From 34b7e00eedac0fea3a41bbba49d423c6f9ca68a6 Mon Sep 17 00:00:00 2001 From: Christian Clason Date: Tue, 11 Jun 2024 08:43:59 +0200 Subject: [PATCH] vim-patch:7e9a1a7: runtime(svelte): basic svelte ftplugin file closes: vim/vim#14949 https://github.com/vim/vim/commit/7e9a1a75b80c73b1dbe83adb69c9708aa2f0bc4d Co-authored-by: Igor --- runtime/ftplugin/svelte.vim | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 runtime/ftplugin/svelte.vim diff --git a/runtime/ftplugin/svelte.vim b/runtime/ftplugin/svelte.vim new file mode 100644 index 0000000000..e0ec4e0ae3 --- /dev/null +++ b/runtime/ftplugin/svelte.vim @@ -0,0 +1,13 @@ +" Vim filetype plugin +" Language: svelte +" Maintainer: Igor Lacerda +" Last Change: 2024 Jun 09 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +setl commentstring= + +let b:undo_ftplugin = 'setl cms<'