Skip to content

Commit 9f04b55

Browse files
committed
Updated c and asm snippet trigger to doxy because the original triggers
didn't work as they were interpreted as comments.
1 parent 85abcbb commit 9f04b55

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

neosnippets/asm.snip

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
snippet ;;
2-
abbr ;; @brief
1+
snippet doxy
2+
abbr ;; @brief ...
33
options head
44
;;
55
;; @brief ${1:function description}
66
;;
7-
;; @details ${2:Detailed description}
7+
;; @details ${2:detailed description}
88
;;
99
;; @param ${3:param}
1010
;;

neosnippets/c.snip

+3-2
Original file line numberDiff line numberDiff line change
@@ -171,14 +171,15 @@ snippet fgets
171171
abbr fgets(row, length, file);
172172
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});
173173

174-
snippet /**
175-
abbr /** @brief
174+
snippet doxy
175+
abbr /** @brief ...
176176
options head
177177
/**
178178
* @brief ${1:function description}
179179
*
180180
* @details ${2:detailed description}
181181
*
182182
* @param ${3:param}
183+
*
183184
* @return ${4:return type}
184185
*/

0 commit comments

Comments
 (0)