We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 03025b5 + 85abcbb commit 9cf2d73Copy full SHA for 9cf2d73
neosnippets/asm.snip
@@ -0,0 +1,12 @@
1
+snippet ;;
2
+abbr ;; @brief
3
+options head
4
+ ;;
5
+ ;; @brief ${1:function description}
6
7
+ ;; @details ${2:Detailed description}
8
9
+ ;; @param ${3:param}
10
11
+ ;; @return ${4:return}
12
neosnippets/c.snip
@@ -170,3 +170,15 @@ abbr fopen("...", "...");
170
snippet fgets
171
abbr fgets(row, length, file);
172
fgets(${0:ROW}, ${1:LENGTH}, ${2:FILE});
173
+
174
+snippet /**
175
+abbr /** @brief
176
177
+ /**
178
+ * @brief ${1:function description}
179
+ *
180
+ * @details ${2:detailed description}
181
182
+ * @param ${3:param}
183
+ * @return ${4:return type}
184
+ */
0 commit comments