From 63bc8a716bc810125bfea0ed099e6b8ae310f71e Mon Sep 17 00:00:00 2001 From: arne314 <73391160+arne314@users.noreply.github.com> Date: Sat, 30 Aug 2025 12:38:30 +0200 Subject: [PATCH] feat(snip): add `tp` for transpose --- 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 b68a9a8..ca68d40 100644 --- a/lua/typstar/snippets/math.lua +++ b/lua/typstar/snippets/math.lua @@ -46,6 +46,7 @@ return { -- exponents snip('iv', '^(-1) ', {}, math, 500, { wordTrig = false, blacklist = { 'equiv' } }), + snip('tp', '^top ', {}, 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 }),