diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2023-10-27 09:40:31 +0200 |
|---|---|---|
| committer | Christian Clason <c.clason@uni-graz.at> | 2023-10-27 10:06:52 +0200 |
| commit | 4fcdfa5ad01fd8f7e8c0e044fcf004692c0889d5 (patch) | |
| tree | 7c281e51be467df2065d6766050310bed2bbb9bd /runtime/ftplugin/debsources.vim | |
| parent | 5753e5e7ebb60d26d78aa3c99a8b0e2ee8023056 (diff) | |
| download | rneovim-4fcdfa5ad01fd8f7e8c0e044fcf004692c0889d5.tar.gz rneovim-4fcdfa5ad01fd8f7e8c0e044fcf004692c0889d5.tar.bz2 rneovim-4fcdfa5ad01fd8f7e8c0e044fcf004692c0889d5.zip | |
vim-patch:7b7cda67a124
runtime(debian): update debian related runtime files (vim/vim#13423)
* Update Debian runtime files
Add mantic as a supported Ubuntu release and move buster/kinetic to
unsupported.
Add syntax highlighting for deb822sources filetype.
Add debsources ftplugin to set relevant comment options.
Move common version information to shared/debversions.vim
Closes vim/vim#11934
* Add myself as codeowner for Debian-related runtime files
---------
https://github.com/vim/vim/commit/7b7cda67a1246874520b280277d9b1447e1a7ef5
Co-authored-by: James McCoy <jamessan@jamessan.com>
Co-authored-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Co-authored-by: James Addison <jay@jp-hosting.net>
Co-authored-by: Viktor Szépe <viktor@szepe.net>
Co-authored-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Co-authored-by: James Addison <jay@jp-hosting.net>
Co-authored-by: Viktor Szépe <viktor@szepe.net>
Diffstat (limited to 'runtime/ftplugin/debsources.vim')
| -rw-r--r-- | runtime/ftplugin/debsources.vim | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/runtime/ftplugin/debsources.vim b/runtime/ftplugin/debsources.vim new file mode 100644 index 0000000000..cbb4fafd22 --- /dev/null +++ b/runtime/ftplugin/debsources.vim @@ -0,0 +1,16 @@ +" Language: Debian sources.list +" Maintainer: Debian Vim Maintainers <team+vim@tracker.debian.org> +" Last Change: 2023 Aug 30 +" License: Vim License +" URL: https://salsa.debian.org/vim-team/vim-debian/blob/main/ftplugin/debsources.vim + +if exists('b:did_ftplugin') + finish +endif +let b:did_ftplugin=1 + +setlocal comments=:# +setlocal commentstring=#%s +setlocal formatoptions-=t + +let b:undo_ftplugin = 'setlocal comments< commentstring< formatoptions<' |