Removed newline from C and NASM function Doxygen snippet. Added new

Python class and function Doxygen snippets.
This commit is contained in:
Dan Pitic 2018-09-17 20:56:24 +08:00
parent ef6eae61f1
commit ffc08ac17f
4 changed files with 31 additions and 5 deletions

View File

@ -5,11 +5,11 @@
# group: doxygen
# --
/**
* @brief ${1:function description}
* @brief ${1:function description}
*
* @details ${2:detailed description}
* @details ${2:detailed description}
*
* @param ${3:param}
* @param ${3:param}
*
* @return ${4:return type}
*/
* @return ${4:return type}
*/

View File

@ -0,0 +1,11 @@
# -*- mode: snippet -*-
# contributor: Dan Pitic <dpitic@gmail.com>
# name: Class Doxygen Doc
# key: doxy_class
# group: doxygen
# --
"""
@brief ${1:class description}
@details ${2:detailed description}
"""

View File

@ -0,0 +1,15 @@
# -*- mode: snippet -*-
# contributor: Dan Pitic <dpitic@gmail.com>
# name: Function Doxygen Doc
# key: doxy_func
# group: doxygen
# --
"""
@brief ${1:function description}
@details ${2:detailed description}
@param ${3:param}
@return ${4:return type}
"""