Backslash snippets, turn \ into \ using \´
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 17s
Details
Test Neovim config on push / build (ubuntu-20.04) (push) Failing after 17s
Details
This commit is contained in:
parent
74ce5c7cde
commit
f33b495d12
|
@ -265,23 +265,28 @@ snippet - "new item" b
|
|||
endsnippet
|
||||
|
||||
snippet sch "chapter"
|
||||
\\chapter{$1}$0
|
||||
\\chapter{$1}
|
||||
\\label{chapter:`!p snip.rv = t[1].lower().replace(" ", "_")`}$0
|
||||
endsnippet
|
||||
|
||||
snippet sse "Section"
|
||||
\\section{$1}$0
|
||||
\\section{$1}
|
||||
\\label{section:`!p snip.rv = t[1].lower().replace(" ", "_")`}$0
|
||||
endsnippet
|
||||
|
||||
snippet sss "Subsection"
|
||||
\\subsection{$1}$0
|
||||
\\subsection{$1}
|
||||
\\label{subsection:`!p snip.rv = t[1].lower().replace(" ", "_")`}$0
|
||||
endsnippet
|
||||
|
||||
snippet ssn "Subsubsection"
|
||||
\\subsubsection{$1}$0
|
||||
\\subsubsection{$1}
|
||||
\\label{subsubsection:`!p snip.rv = t[1].lower().replace(" ", "_")`}$0
|
||||
endsnippet
|
||||
|
||||
snippet par "Paragraph"
|
||||
\\paragraph{$1}$0
|
||||
\\paragraph{$1}
|
||||
\\label{paragraph:`!p snip.rv = t[1].lower().replace(" ", "_")`}$0
|
||||
endsnippet
|
||||
|
||||
snippet mquote "max quote"
|
||||
|
@ -460,14 +465,18 @@ snippet _- "Escape _ easier" iA
|
|||
\\_
|
||||
endsnippet
|
||||
|
||||
snippet bsp "Beispielsweise" iA
|
||||
snippet bsp "Beispielsweise" A
|
||||
beispielsweise
|
||||
endsnippet
|
||||
|
||||
snippet ß "Backslash" A
|
||||
snippet ß "Backslash" iA
|
||||
\\
|
||||
endsnippet
|
||||
|
||||
snippet \´ "Add another Backslash" iA
|
||||
\\\\
|
||||
endsnippet
|
||||
|
||||
snippet bibbook "Add a new book/journal/paper reference" b
|
||||
\\bibitem{${1:Reference_name}}
|
||||
${2:Author}. (${3:2023}) \`${4:Title}'. ${5:Extension} `!p
|
||||
|
|
Loading…
Reference in New Issue