]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
runtime(just): add 'suffixesadd' to ftplugin
authormathmil <82173590+mathmil@users.noreply.github.com>
Sun, 17 May 2026 18:08:46 +0000 (18:08 +0000)
committerChristian Brabandt <cb@256bit.org>
Sun, 17 May 2026 18:08:46 +0000 (18:08 +0000)
closes: #20197

Signed-off-by: mathmil <82173590+mathmil@users.noreply.github.com>
Signed-off-by: Peter Benjamin <petermbenjamin@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
runtime/ftplugin/just.vim

index 6f2acddf96403505815f4bf7be92bb2ba7657528..7cf188a774d71f61eabd36153432f9f91c3936a7 100644 (file)
@@ -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 <https://github.com/NoahTheDuke/vim-just/>
 
 " 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<"