a7a5990 Add c snippet, update vundle 38330c0 Merge branch 'master' of vcs.murgi.de:dotfiles_fabian/vim 6fa8102 Smartcase, new kernel snippet c9e8778 Finally fix copying to clipboard (hopefully) git-subtree-dir: vim git-subtree-split: a7a599024ad06c9533e7b323b386e25e863e2e95
12 lines
397 B
Plaintext
12 lines
397 B
Plaintext
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
|