From c24a3a57a801abcda2fd516e81006ee07a94954c Mon Sep 17 00:00:00 2001 From: hood Date: Fri, 24 Nov 2023 11:56:09 +0100 Subject: [PATCH] fix: remove repeated word in deprecation message --- lua/ts_context_commentstring/internal.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ts_context_commentstring/internal.lua b/lua/ts_context_commentstring/internal.lua index 1daae90..ddbbf42 100644 --- a/lua/ts_context_commentstring/internal.lua +++ b/lua/ts_context_commentstring/internal.lua @@ -134,7 +134,7 @@ end function M.attach() vim.deprecate( 'context_commentstring nvim-treesitter module', - "use require('ts_context_commentstring').setup {} and set vim.g.skip_ts_context_commentstring_module = true to speed up loading", + "require('ts_context_commentstring').setup {} and set vim.g.skip_ts_context_commentstring_module = true to speed up loading", 'in the future', 'ts_context_commentstring' )