diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-08-25 17:10:39 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-08-25 17:10:39 +0200 |
commit | eb05d05f8a049b32ba1b992074534ca4763e46b3 (patch) | |
tree | 50b09f0ec4398a280cbce18b71dbf55abeacd7d9 /runtime | |
parent | 49b93049c68653156609ebcdf22311ccbcdf00e2 (diff) | |
download | vim-git-eb05d05f8a049b32ba1b992074534ca4763e46b3.tar.gz |
patch 8.2.3374: Pyret files are not recognizedv8.2.3374
Problem: Pyret files are not recognized.
Solution: Recognize .arr files as Pyret. (Doug Kearns)
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 70b647bd8..6144b5ff5 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1383,6 +1383,9 @@ au BufNewFile,BufRead *.pk setf poke " Protocols au BufNewFile,BufRead */etc/protocols setf protocols +" Pyret +au BufNewFile,BufRead *.arr setf pyret + " Pyrex au BufNewFile,BufRead *.pyx,*.pxd setf pyrex |