blob: 6f2acddf96403505815f4bf7be92bb2ba7657528 [file] [log] [blame]
Peter Benjamin72755b32025-01-20 21:56:41 +01001" Vim ftplugin file
2" Language: Justfile
3" Maintainer: Peter Benjamin <@pbnj>
4" Last Change: 2025 Jan 19
5" Credits: The original author, Noah Bogart <https://github.com/NoahTheDuke/vim-just/>
6
7" Only do this when not done yet for this buffer
8if exists("b:did_ftplugin")
9 finish
10endif
11let b:did_ftplugin = 1
12
13setlocal iskeyword+=-
14setlocal comments=n:#
15setlocal commentstring=#\ %s
16
17let b:undo_ftplugin = "setlocal iskeyword< comments< commentstring<"