Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Added new Doxygen style function documentation for C and assembly
language.
  • Loading branch information
dpitic committed Jun 11, 2018
commit 85abcbb4b3365bf404052a37b066e0f2ec2e89b9
12 changes: 12 additions & 0 deletions neosnippets/asm.snip
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
snippet ;;
abbr ;; @brief
options head
;;
;; @brief ${1:function description}
;;
;; @details ${2:Detailed description}
;;
;; @param ${3:param}
;;
;; @return ${4:return}
;;
12 changes: 12 additions & 0 deletions neosnippets/c.snip
Original file line number Diff line number Diff line change
Expand Up @@ -170,3 +170,15 @@ abbr fopen("...", "...");
snippet fgets
abbr fgets(row, length, file);
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});

snippet /**
abbr /** @brief
options head
/**
* @brief ${1:function description}
*
* @details ${2:detailed description}
*
* @param ${3:param}
* @return ${4:return type}
*/