From c3465da4473fdd57c796d91ed3c267e933a639e6 Mon Sep 17 00:00:00 2001 From: arne314 <73391160+arne314@users.noreply.github.com> Date: Fri, 17 Oct 2025 16:02:30 +0200 Subject: [PATCH] minor(snip)!: update plus/minus snippets --- lua/typstar/snippets/math.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lua/typstar/snippets/math.lua b/lua/typstar/snippets/math.lua index 86e449c..0d7069d 100644 --- a/lua/typstar/snippets/math.lua +++ b/lua/typstar/snippets/math.lua @@ -34,11 +34,11 @@ return { snip('ge', '>>= ', {}, math), -- operators - snip('ak([^k ])', '+ <>', { cap(1) }, math, 100, { wordTrig = false }), - snip('sk([^k ])', '- <>', { cap(1) }, math, 100, { wordTrig = false }), + snip('mak', 'plus.minus ', {}, math), snip('oak', 'plus.circle ', {}, math), snip('bak', 'plus.square ', {}, math), - snip('mak', 'plus.minus ', {}, math), + snip('osk', 'minus.circle ', {}, math), + snip('bsk', 'minus.square ', {}, math), snip('xx', 'times ', {}, math), snip('oxx', 'times.circle ', {}, math), snip('bxx', 'times.square ', {}, math),