From 17909cb1a4d5aca4ee01fc51572a31cf6371fe8b Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Fri, 10 Jun 2022 14:34:52 +0200 Subject: [PATCH] Add multi column snippet --- _config/nvim/UltiSnips/plaintex.snippets | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/_config/nvim/UltiSnips/plaintex.snippets b/_config/nvim/UltiSnips/plaintex.snippets index 2874a7f..30b504d 100644 --- a/_config/nvim/UltiSnips/plaintex.snippets +++ b/_config/nvim/UltiSnips/plaintex.snippets @@ -29,3 +29,14 @@ snippet table cell3 & cell4 \\\\ \end{tabular} endsnippet + +snippet multicols +\begin{multicols}{2} + Now, we are adding some text here to understand how multiple columns will come up. + + \columnbreak + + This is again some new text here. Just to show you how the text is placed +\end{multicols} +endsnippet +