diff --git a/users/juliekoubova/vim/debug.h b/users/juliekoubova/vim/debug.h index b22f2e9f9e..1e62515a59 100644 --- a/users/juliekoubova/vim/debug.h +++ b/users/juliekoubova/vim/debug.h @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include "quantum/logging/print.h" diff --git a/users/juliekoubova/vim/pending.c b/users/juliekoubova/vim/pending.c index 9f860b35f3..45423341cf 100644 --- a/users/juliekoubova/vim/pending.c +++ b/users/juliekoubova/vim/pending.c @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "pending.h" #include "debug.h" #include "quantum/quantum.h" diff --git a/users/juliekoubova/vim/pending.h b/users/juliekoubova/vim/pending.h index da8f59d95a..455f89f5b6 100644 --- a/users/juliekoubova/vim/pending.h +++ b/users/juliekoubova/vim/pending.h @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include #include diff --git a/users/juliekoubova/vim/perform_action.c b/users/juliekoubova/vim/perform_action.c index 76100e0f46..09b239d102 100644 --- a/users/juliekoubova/vim/perform_action.c +++ b/users/juliekoubova/vim/perform_action.c @@ -1,4 +1,4 @@ -/* Copyright 2023 (c) Julie Koubova (julie@koubova.net) +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/users/juliekoubova/vim/perform_action.h b/users/juliekoubova/vim/perform_action.h index 813cb973ee..a4af837596 100644 --- a/users/juliekoubova/vim/perform_action.h +++ b/users/juliekoubova/vim/perform_action.h @@ -1,4 +1,4 @@ -/* Copyright 2023 (c) Julie Koubova (julie@koubova.net) +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/users/juliekoubova/vim/statemachine.c b/users/juliekoubova/vim/statemachine.c index 9de696e827..c65acc19c7 100644 --- a/users/juliekoubova/vim/statemachine.c +++ b/users/juliekoubova/vim/statemachine.c @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "debug.h" #include "statemachine.h" #include "vim_mode.h" diff --git a/users/juliekoubova/vim/statemachine.h b/users/juliekoubova/vim/statemachine.h index 6c9a7c0a86..d0c9b50d66 100644 --- a/users/juliekoubova/vim/statemachine.h +++ b/users/juliekoubova/vim/statemachine.h @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include "debug.h" #include "vim_mode.h" diff --git a/users/juliekoubova/vim/vim.c b/users/juliekoubova/vim/vim.c index 1599966911..c09b57c093 100644 --- a/users/juliekoubova/vim/vim.c +++ b/users/juliekoubova/vim/vim.c @@ -1,4 +1,4 @@ -/* Copyright 2023 (c) Julie Koubova (julie@koubova.net) +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/users/juliekoubova/vim/vim_mode.c b/users/juliekoubova/vim/vim_mode.c index 25c77191be..a0471c2219 100644 --- a/users/juliekoubova/vim/vim_mode.c +++ b/users/juliekoubova/vim/vim_mode.c @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "debug.h" #include "pending.h" #include "quantum/quantum.h" diff --git a/users/juliekoubova/vim/vim_mode.h b/users/juliekoubova/vim/vim_mode.h index 2eeb227f28..ee013438e6 100644 --- a/users/juliekoubova/vim/vim_mode.h +++ b/users/juliekoubova/vim/vim_mode.h @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include #include "quantum/quantum.h" diff --git a/users/juliekoubova/vim/vim_send.c b/users/juliekoubova/vim/vim_send.c index 09f2105478..bd5ac8caac 100644 --- a/users/juliekoubova/vim/vim_send.c +++ b/users/juliekoubova/vim/vim_send.c @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #include "vim_send.h" #include "debug.h" #include "quantum/quantum.h" diff --git a/users/juliekoubova/vim/vim_send.h b/users/juliekoubova/vim/vim_send.h index beb9064401..09ea6ca23b 100644 --- a/users/juliekoubova/vim/vim_send.h +++ b/users/juliekoubova/vim/vim_send.h @@ -1,3 +1,19 @@ +/* Copyright 2024 (c) Julie Koubova (julie@koubova.net) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #pragma once #include