diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2025-04-13 18:42:39 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2025-04-14 09:47:56 +0200 |
| commit | 287955cfb401df4e43bd22c10fa29ff234ffdef6 (patch) | |
| tree | 68b4caa94fdbadc69c0fdafebe82371210f8756b /runtime/lua/vim/filetype.lua | |
| parent | 2d6120240de5d13cc59eff7b2fe362644d36851e (diff) | |
vim-patch:9.1.1299: filetype: mbsyncrc files are not recognized
Problem: filetype: mbsyncrc files are not recognized
Solution: detect isyncrc and "*.mbsyncrc" files as mbsync filetype,
include filetype and syntax plugin (Pierrick Guillaume)
mbsync is a command line application which synchronizes mailboxes;
currently Maildir and IMAP4 mailboxes are supported.
New messages, message deletions and flag changes can be propagated both ways;
the operation set can be selected in a fine-grained manner.
References:
mbsync syntax overview: mbsync manual (isync v1.4.4)
https://isync.sourceforge.io/mbsync.html
Upstream support for the mbsync filetype.
Original plugin: https://github.com/Fymyte/mbsync.vim
closes: vim/vim#17103
https://github.com/vim/vim/commit/836b87d6998a1f18783afdc41c90ae1f38c9c3e9
Co-authored-by: Pierrick Guillaume <pguillaume@fymyte.com>
Diffstat (limited to 'runtime/lua/vim/filetype.lua')
| -rw-r--r-- | runtime/lua/vim/filetype.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/lua/vim/filetype.lua b/runtime/lua/vim/filetype.lua index 8d3f205d0d..426102b353 100644 --- a/runtime/lua/vim/filetype.lua +++ b/runtime/lua/vim/filetype.lua @@ -762,6 +762,7 @@ local extension = { dm3 = 'maxima', dmt = 'maxima', wxm = 'maxima', + mbsyncrc = 'mbsync', mw = 'mediawiki', wiki = 'mediawiki', mel = 'mel', @@ -1502,7 +1503,6 @@ local filename = { ['.chktexrc'] = 'conf', ['.ripgreprc'] = 'conf', ripgreprc = 'conf', - ['.mbsyncrc'] = 'conf', ['configure.in'] = 'config', ['configure.ac'] = 'config', crontab = 'crontab', @@ -1705,6 +1705,7 @@ local filename = { ['/etc/man.conf'] = 'manconf', ['man.config'] = 'manconf', ['maxima-init.mac'] = 'maxima', + isyncrc = 'mbsync', ['meson.build'] = 'meson', ['meson.options'] = 'meson', ['meson_options.txt'] = 'meson', |
