Add neovim for real
This commit is contained in:
11
nvim/my-snippets/UltiSnips/c.snippets
Normal file
11
nvim/my-snippets/UltiSnips/c.snippets
Normal file
@@ -0,0 +1,11 @@
|
||||
snippet dprintk "Printk current func and debug info ..."
|
||||
printk("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprint "Printk current func and debug info ..."
|
||||
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprintf "Printk current func and debug info ..."
|
||||
printf("%s:%d:%s: ${1}\n",__FILE__,__LINE__, __FUNCTION__${2});
|
||||
endsnippet
|
||||
Reference in New Issue
Block a user