commit 524f4225649b8ab88313c7ce9bf2a7ead684d077 parent 25ce44845d2adf94dfc91c70eb792a50d8274aa1 Author: zeertzjq <zeertzjq@outlook.com> Date: Thu, 22 Jan 2026 07:27:08 +0800 vim-patch:87635dc: runtime(kitty): Add kitty ftplugin file closes: vim/vim#19232 https://github.com/vim/vim/commit/87635dcb5ad0b55cddc71ca7e9bc312ef87d5246 Co-authored-by: Arvin Verain <arvinverain@proton.me> Diffstat:
| A | runtime/ftplugin/kitty.vim | | | 13 | +++++++++++++ |
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/runtime/ftplugin/kitty.vim b/runtime/ftplugin/kitty.vim @@ -0,0 +1,13 @@ +" Vim filetype plugin +" Language: kitty +" Maintainer: Arvin Verain <arvinverain@proton.me> +" Last Change: 2026 Jan 22 + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin = 1 + +setl comments=:# commentstring=#\ %s formatoptions-=t formatoptions+=rol + +let b:undo_ftplugin = 'setl com< cms< fo<'