diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-02 19:43:39 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-08-02 19:44:37 -0400 |
commit | cdd8540a20e2dbd2288b254a412ad8fa7d4bfbc8 (patch) | |
tree | ccfade98832d5f56f301a6b5128cc9f75a8e0660 /runtime | |
parent | 24fb7eefaad1023938f43e8addb05d273b27323a (diff) | |
download | rneovim-cdd8540a20e2dbd2288b254a412ad8fa7d4bfbc8.tar.gz rneovim-cdd8540a20e2dbd2288b254a412ad8fa7d4bfbc8.tar.bz2 rneovim-cdd8540a20e2dbd2288b254a412ad8fa7d4bfbc8.zip |
vim-patch:8.1.1187: cannot recognize Pipfile
Problem: Cannot recognize Pipfile.
Solution: Use existing filetypes. (Charles Ross, closes vim/vim#4280)
https://github.com/vim/vim/commit/3a4c53ba51c01b8fea68972453a71c55cf32edbe
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/filetype.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim index 473c169061..6922565192 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1173,6 +1173,10 @@ au BufNewFile,BufRead *.rcp setf pilrc " Pine config au BufNewFile,BufRead .pinerc,pinerc,.pinercex,pinercex setf pine +" Pipenv Pipfiles +au BufNewFile,BufRead Pipfile setf config +au BufNewFile,BufRead Pipfile.lock setf json + " PL/1, PL/I au BufNewFile,BufRead *.pli,*.pl1 setf pli @@ -1865,7 +1869,8 @@ au BufNewFile,BufRead *.xmi setf xml au BufNewFile,BufRead *.csproj,*.csproj.user setf xml " Qt Linguist translation source and Qt User Interface Files are XML -au BufNewFile,BufRead *.ts,*.ui setf xml +" However, for .ts Typescript is more common. +au BufNewFile,BufRead *.ui setf xml " TPM's are RDF-based descriptions of TeX packages (Nikolai Weibull) au BufNewFile,BufRead *.tpm setf xml |