From 2cc29989078930fd093f74f3d95ab47a31bf6025 Mon Sep 17 00:00:00 2001 From: Fabrice Mouhartem Date: Tue, 1 Apr 2025 18:57:52 +0200 Subject: [PATCH] fix(jj): replace `jj` with `jjdescription` filetype --- lsp/ltex_plus.lua | 1 + lua/complete.lua | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lsp/ltex_plus.lua b/lsp/ltex_plus.lua index 3854d24..cc80452 100644 --- a/lsp/ltex_plus.lua +++ b/lsp/ltex_plus.lua @@ -22,6 +22,7 @@ return { 'norg', 'gitcommit', 'jj', + 'jjdescription', 'rst', 'typst' }, diff --git a/lua/complete.lua b/lua/complete.lua index 9607b8f..0cb40fc 100644 --- a/lua/complete.lua +++ b/lua/complete.lua @@ -8,7 +8,7 @@ luasnip.config.setup { updateevents = "TextChanged,TextChangedI", enable_autosnippets = true, } -luasnip.filetype_extend("jj", { "gitcommit" }) +luasnip.filetype_extend("jjdescription", { "gitcommit" }) local has_words_before = function() unpack = unpack or table.unpack