Merge commit '068d708cf2824672044e67949a2b9116ba2be81c' as 'vim'

This commit is contained in:
murgi
2017-04-12 10:07:28 +02:00
200 changed files with 28804 additions and 0 deletions

View 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

View File

@@ -0,0 +1,16 @@
snippet transframe "Transdissolving frame environment" b
\begin{frame}[t]{${1:title}}
\transdissolve
\vfill
${2:content}
\vfill
\end{frame}
endsnippet
snippet tikzfile
\setbeamercovered{invisible}
\begin{tikzpicture}[->,thick, node distance=1cm]
\end{tikzpicture}
% vim: set fo-=t: vim: set fo-=t:
endsnippet