aboutsummaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChristian Clason <christian.clason@uni-due.de>2021-09-12 12:55:34 +0200
committerGitHub <noreply@github.com>2021-09-12 12:55:34 +0200
commitae73aa83395f0056faafe3bb5cdd73d15249005b (patch)
tree9f195904b63cc6f1eb3c93a351d5a7c9e920164b /runtime
parent1c5833cb008f67fcbf1e36dc3841df77f2e0e378 (diff)
downloadrneovim-ae73aa83395f0056faafe3bb5cdd73d15249005b.tar.gz
rneovim-ae73aa83395f0056faafe3bb5cdd73d15249005b.tar.bz2
rneovim-ae73aa83395f0056faafe3bb5cdd73d15249005b.zip
vim-patch:8.2.3374: Pyret files are not recognized (#15642)
Problem: Pyret files are not recognized. Solution: Recognize .arr files as Pyret. (Doug Kearns) https://github.com/vim/vim/commit/eb05d05f8a049b32ba1b992074534ca4763e46b3
Diffstat (limited to 'runtime')
-rw-r--r--runtime/filetype.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index 7358f8f2b3..206b22d460 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1382,6 +1382,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