From 38d6c0d9bd1846e04966da2ef7703d324af86137 Mon Sep 17 00:00:00 2001 From: arne314 <73391160+arne314@users.noreply.github.com> Date: Sun, 22 Jun 2025 13:35:40 +0200 Subject: [PATCH] minor(snip)!: use `diff` instead of `partial` --- lua/typstar/snippets/math.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/typstar/snippets/math.lua b/lua/typstar/snippets/math.lua index c338d73..f0b46ec 100644 --- a/lua/typstar/snippets/math.lua +++ b/lua/typstar/snippets/math.lua @@ -81,8 +81,8 @@ return { snip('dx', 'dif / (dif <>) ', { i(1, 'x') }, math, 900), snip('ddx', '(dif <>) / (dif <>) ', { i(1, 'f'), i(2, 'x') }, math), - snip('DX', 'partial / (partial <>) ', { i(1, 'x') }, math, 900), - snip('DDX', '(partial <>) / (partial <>) ', { i(1, 'f'), i(2, 'x') }, math), + snip('DX', 'diff / (diff <>) ', { i(1, 'x') }, math, 900), + snip('DDX', '(diff <>) / (diff <>) ', { i(1, 'f'), i(2, 'x') }, math), snip('part', 'partial ', {}, math, 1600), snip('it', 'integral ', {}, math, 900), snip('int', 'integral_(<>)^(<>) ', { i(1, 'a'), i(2, 'b') }, math),