summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin
diff options
context:
space:
mode:
authorMelker Ulander <melker.ulander@pm.me>2024-01-27 11:26:14 +0100
committerGitHub <noreply@github.com>2024-01-27 11:26:14 +0100
commit772f8f5425132b133a1d0fb22b35c13b4e027b42 (patch)
tree32a7a94c49a44fb4828d88a6f21488f6edbd8272 /runtime/ftplugin
parentb418a51933bb606e85f5288eedb866b73b8f072e (diff)
runtime(hurl): add hurl filetype plugin(#13921)
Signed-off-by: Melker Ulander <melker.ulander@pm.me> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/ftplugin')
-rw-r--r--runtime/ftplugin/hurl.vim11
1 files changed, 11 insertions, 0 deletions
diff --git a/runtime/ftplugin/hurl.vim b/runtime/ftplugin/hurl.vim
new file mode 100644
index 0000000000..10a3131d3a
--- /dev/null
+++ b/runtime/ftplugin/hurl.vim
@@ -0,0 +1,11 @@
+" Vim filetype plugin file
+" Language: hurl
+" Maintainer: Melker Ulander <melker.ulander@pm.me>
+" Last Changed: 2024 01 26
+
+if exists("b:did_ftplugin") | finish | endif
+
+let b:did_ftplugin = 1
+setlocal commentstring=#\ %s
+
+let b:undo_ftplugin = "setlocal commentstring<"