comparison runtime/filetype.vim @ 23120:640ec41661b1 v8.2.2106

patch 8.2.2106: TOML files are not recognized Commit: https://github.com/vim/vim/commit/b237ae7b837a31922d31c3a27b7c66e63468b8a8 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 7 18:05:02 2020 +0100 patch 8.2.2106: TOML files are not recognized Problem: TOML files are not recognized. Solution: Match *.toml. (issue https://github.com/vim/vim/issues/7432)
author Bram Moolenaar <Bram@vim.org>
date Mon, 07 Dec 2020 18:15:04 +0100
parents d01b011f91b9
children 99ef85ff1af4
comparison
equal deleted inserted replaced
23119:2c01f0efcb8b 23120:640ec41661b1
1740 au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf 1740 au BufNewFile,BufRead *.tf,.tfrc,tfrc setf tf
1741 1741
1742 " tmux configuration 1742 " tmux configuration
1743 au BufNewFile,BufRead {.,}tmux*.conf setf tmux 1743 au BufNewFile,BufRead {.,}tmux*.conf setf tmux
1744 1744
1745 " TOML
1746 au BufNewFile,BufRead *.toml setf toml
1747
1745 " TPP - Text Presentation Program 1748 " TPP - Text Presentation Program
1746 au BufNewFile,BufReadPost *.tpp setf tpp 1749 au BufNewFile,BufReadPost *.tpp setf tpp
1747 1750
1748 " Treetop 1751 " Treetop
1749 au BufRead,BufNewFile *.treetop setf treetop 1752 au BufRead,BufNewFile *.treetop setf treetop