diff --git a/auto-insert/cpp b/auto-insert/cpp index 9a573d2..65add26 100644 --- a/auto-insert/cpp +++ b/auto-insert/cpp @@ -1,19 +1,3 @@ -/* This file is part of `(projectile-project-name)`. - * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> - * - * 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, version 3. - * - * 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 "`(file-name-nondirectory (file-name-sans-extension (buffer-file-name)))`.hpp" namespace ${1:`(projectile-project-name)`} diff --git a/auto-insert/hpp b/auto-insert/hpp index 2369ab5..8a32a9b 100644 --- a/auto-insert/hpp +++ b/auto-insert/hpp @@ -1,19 +1,3 @@ -/* This file is part of `(projectile-project-name)`. - * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> - * - * 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, version 3. - * - * 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 . - */ - #ifndef ${1:`(upcase (replace-regexp-in-string "-" "_" (projectile-project-name)))`_`(upcase (file-name-nondirectory (file-name-sans-extension (buffer-file-name))))`_`(upcase (file-name-extension (buffer-file-name)))`} #define $1 diff --git a/snippets/c++-mode/AGPL b/snippets/c++-mode/AGPL new file mode 100644 index 0000000..37fb8fa --- /dev/null +++ b/snippets/c++-mode/AGPL @@ -0,0 +1,20 @@ +# -*- mode: snippet -*- +# name: AGPL +# key: AGPL +# -- +/* This file is part of `(projectile-project-name)`. + * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, version 3. + * + * 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 Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + */ + $0 \ No newline at end of file diff --git a/snippets/c++-mode/GPL b/snippets/c++-mode/GPL new file mode 100644 index 0000000..65bf6f6 --- /dev/null +++ b/snippets/c++-mode/GPL @@ -0,0 +1,20 @@ +# -*- mode: snippet -*- +# name: GPL +# key: GPL +# -- +/* This file is part of `(projectile-project-name)`. + * Copyright © `(format-time-string "%Y")` `user-full-name` <`user-mail-address`> + * + * 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, version 3. + * + * 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 . + */ + $0 \ No newline at end of file