Merge commit '068d708cf2824672044e67949a2b9116ba2be81c' as 'vim'
This commit is contained in:
11
vim/my-snippets/UltiSnips/c.snippets
Normal file
11
vim/my-snippets/UltiSnips/c.snippets
Normal file
@@ -0,0 +1,11 @@
|
||||
snippet dprintk "Printk current func and debug info ..."
|
||||
printk("%s: ${1}\n", __func__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprint "Printk current func and debug info ..."
|
||||
printf("%s: ${1}\n", __func__${2});
|
||||
endsnippet
|
||||
|
||||
snippet dprintf "Printk current func and debug info ..."
|
||||
printf("%s: ${1}\n", __func__${2});
|
||||
endsnippet
|
||||
Reference in New Issue
Block a user