From 8329f624de048c0cedaf0e8c1fc43b253e49c48c Mon Sep 17 00:00:00 2001 From: Sean Dewar Date: Mon, 7 Dec 2020 17:59:16 +0000 Subject: 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 --- runtime/filetype.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'runtime') 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 -- cgit