Skip to content

Commit

Permalink
gpl
Browse files Browse the repository at this point in the history
  • Loading branch information
juliekoubova committed Jun 15, 2024
1 parent 91bd1be commit d3b14f3
Show file tree
Hide file tree
Showing 12 changed files with 147 additions and 3 deletions.
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/debug.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "quantum/logging/print.h"

Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/pending.c
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include "pending.h"
#include "debug.h"
#include "quantum/quantum.h"
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/pending.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <stdbool.h>
#include <stdint.h>
Expand Down
2 changes: 1 addition & 1 deletion users/juliekoubova/vim/perform_action.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion users/juliekoubova/vim/perform_action.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/statemachine.c
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include "debug.h"
#include "statemachine.h"
#include "vim_mode.h"
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/statemachine.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#pragma once
#include "debug.h"
#include "vim_mode.h"
Expand Down
2 changes: 1 addition & 1 deletion users/juliekoubova/vim/vim.c
Original file line number Diff line number Diff line change
@@ -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
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/vim_mode.c
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include "debug.h"
#include "pending.h"
#include "quantum/quantum.h"
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/vim_mode.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <stdint.h>
#include "quantum/quantum.h"
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/vim_send.c
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#include "vim_send.h"
#include "debug.h"
#include "quantum/quantum.h"
Expand Down
16 changes: 16 additions & 0 deletions users/juliekoubova/vim/vim_send.h
Original file line number Diff line number Diff line change
@@ -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 <http://www.gnu.org/licenses/>.
*/

#pragma once
#include <stdint.h>

Expand Down

0 comments on commit d3b14f3

Please sign in to comment.