From 8695355610273534641293d7df6fcb98f5befa85 Mon Sep 17 00:00:00 2001 From: arne314 <73391160+arne314@users.noreply.github.com> Date: Mon, 20 Oct 2025 21:54:07 +0200 Subject: [PATCH] minor(snip): add `^complement` snippet --- lua/typstar/snippets/math.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/typstar/snippets/math.lua b/lua/typstar/snippets/math.lua index 21c8e1c..3afbf54 100644 --- a/lua/typstar/snippets/math.lua +++ b/lua/typstar/snippets/math.lua @@ -47,6 +47,7 @@ return { -- exponents snip('iv', '^(-1) ', {}, math, 500, { wordTrig = false, blacklist = { 'equiv' } }), snip('tp', '^top ', {}, math, 500, { wordTrig = false }), + snip('cmp', '^complement ', {}, math, 500, { wordTrig = false }), snip('sr', '^2 ', {}, math, 500, { wordTrig = false }), snip('cb', '^3 ', {}, math, 500, { wordTrig = false }), snip('jj', '_(<>) ', { i(1, 'n') }, math, 500, { wordTrig = false }),