diff options
Diffstat (limited to '.emacs.d/snippets/python-mode')
| -rw-r--r-- | .emacs.d/snippets/python-mode/class_doxygen_doc | 11 | ||||
| -rw-r--r-- | .emacs.d/snippets/python-mode/function_doxygen_doc | 15 |
2 files changed, 26 insertions, 0 deletions
diff --git a/.emacs.d/snippets/python-mode/class_doxygen_doc b/.emacs.d/snippets/python-mode/class_doxygen_doc new file mode 100644 index 0000000..e8c6fa4 --- /dev/null +++ b/.emacs.d/snippets/python-mode/class_doxygen_doc | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | # -*- mode: snippet -*- | ||
| 2 | # contributor: Dan Pitic <dpitic@gmail.com> | ||
| 3 | # name: Class Doxygen Doc | ||
| 4 | # key: doxy_class | ||
| 5 | # group: doxygen | ||
| 6 | # -- | ||
| 7 | """ | ||
| 8 | @brief ${1:class description} | ||
| 9 | |||
| 10 | @details ${2:detailed description} | ||
| 11 | """ \ No newline at end of file | ||
diff --git a/.emacs.d/snippets/python-mode/function_doxygen_doc b/.emacs.d/snippets/python-mode/function_doxygen_doc new file mode 100644 index 0000000..f42b999 --- /dev/null +++ b/.emacs.d/snippets/python-mode/function_doxygen_doc | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # -*- mode: snippet -*- | ||
| 2 | # contributor: Dan Pitic <dpitic@gmail.com> | ||
| 3 | # name: Function Doxygen Doc | ||
| 4 | # key: doxy_func | ||
| 5 | # group: doxygen | ||
| 6 | # -- | ||
| 7 | """ | ||
| 8 | @brief ${1:function description} | ||
| 9 | |||
| 10 | @details ${2:detailed description} | ||
| 11 | |||
| 12 | @param ${3:param} | ||
| 13 | |||
| 14 | @return ${4:return type} | ||
| 15 | """ \ No newline at end of file | ||
