From c6227f097cbb31783d4e00e20426816268a2e18b Mon Sep 17 00:00:00 2001 From: dogeystamp Date: Mon, 12 Jun 2023 15:32:58 -0400 Subject: [PATCH] nvim: added not-inline math macro --- src/.config/nvim/ultisnips/typst.snippets | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/.config/nvim/ultisnips/typst.snippets b/src/.config/nvim/ultisnips/typst.snippets index 8a0738a..56855ff 100644 --- a/src/.config/nvim/ultisnips/typst.snippets +++ b/src/.config/nvim/ultisnips/typst.snippets @@ -47,6 +47,9 @@ endsnippet snippet im "inline math" w \$${1:${VISUAL}}\$ endsnippet +snippet mm "block math" w +\$ ${1:${VISUAL}} \$ +endsnippet snippet link "link" w #link("${1}")[${2}]