From 57e62d11aadc6a298ae478d9737a59abf54dd311 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Sun, 16 Nov 2025 23:02:04 +0100 Subject: [PATCH] Minors --- lua/typstar/snippets/math.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lua/typstar/snippets/math.lua b/lua/typstar/snippets/math.lua index f94252e..b887585 100644 --- a/lua/typstar/snippets/math.lua +++ b/lua/typstar/snippets/math.lua @@ -31,6 +31,7 @@ return { snip('gt', '>> ', {}, math), snip('le', '<<= ', {}, math), snip('ne', '!= ', {}, math), + snip('eel', '&= ', {}, math), snip('ge', '>>= ', {}, math), -- custom @@ -45,6 +46,7 @@ return { snip('del', 'Delta ', {}, math), snip('apr', 'approx ', {}, math), snip('pal', 'parallel ', {}, math), + snip('sa', 'space ', {}, math), -- operators snip('ak([^k ])', '+ <>', { cap(1) }, math, 100, { wordTrig = false }),