diff options
author | Sean Dewar <seandewar@users.noreply.github.com> | 2020-12-07 17:59:16 +0000 |
---|---|---|
committer | Sean Dewar <seandewar@users.noreply.github.com> | 2020-12-07 18:03:29 +0000 |
commit | 8329f624de048c0cedaf0e8c1fc43b253e49c48c (patch) | |
tree | be468dfe056b77aaf63b395a75da168e5c8a89cf /runtime | |
parent | 85bce4d13d405fe009428def4fbead54bb741008 (diff) | |
download | rneovim-8329f624de048c0cedaf0e8c1fc43b253e49c48c.tar.gz rneovim-8329f624de048c0cedaf0e8c1fc43b253e49c48c.tar.bz2 rneovim-8329f624de048c0cedaf0e8c1fc43b253e49c48c.zip |
vim-patch:8.2.2106: TOML files are not recognized
Problem: TOML files are not recognized.
Solution: Match *.toml. (issue vim/vim#7432)
https://github.com/vim/vim/commit/b237ae7b837a31922d31c3a27b7c66e63468b8a8
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index ed19fa1a43..ed3204c537 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1744,6 +1744,9 @@ au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf " tmux configuration au BufNewFile,BufRead {.,}tmux*.conf setf tmux +" TOML +au BufNewFile,BufRead *.toml setf toml + " TPP - Text Presentation Program au BufNewFile,BufReadPost *.tpp setf tpp |