From 2a01e5967103a06dd6c83bfca73995557a171a4b Mon Sep 17 00:00:00 2001 From: mathmil <82173590+mathmil@users.noreply.github.com> Date: Sun, 17 May 2026 18:08:46 +0000 Subject: [PATCH] runtime(just): add 'suffixesadd' to ftplugin closes: #20197 Signed-off-by: mathmil <82173590+mathmil@users.noreply.github.com> Signed-off-by: Peter Benjamin Signed-off-by: Christian Brabandt --- runtime/ftplugin/just.vim | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/runtime/ftplugin/just.vim b/runtime/ftplugin/just.vim index 6f2acddf96..7cf188a774 100644 --- a/runtime/ftplugin/just.vim +++ b/runtime/ftplugin/just.vim @@ -2,6 +2,7 @@ " Language: Justfile " Maintainer: Peter Benjamin <@pbnj> " Last Change: 2025 Jan 19 +" 2026 May 17 by Vim Project: add 'suffixesadd' #20197 " Credits: The original author, Noah Bogart " Only do this when not done yet for this buffer @@ -13,5 +14,6 @@ let b:did_ftplugin = 1 setlocal iskeyword+=- setlocal comments=n:# setlocal commentstring=#\ %s +setlocal suffixesadd=.just -let b:undo_ftplugin = "setlocal iskeyword< comments< commentstring<" +let b:undo_ftplugin = "setlocal iskeyword< comments< commentstring< suffixesadd<"