summaryrefslogtreecommitdiffstats
path: root/runtime/filetype.vim
diff options
context:
space:
mode:
authorAmaan Qureshi <amaanq12@gmail.com>2023-02-05 14:47:46 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-05 14:47:46 +0000
commitc8ef30bc2eaec956549510cd4b2efc96b7aee563 (patch)
tree0959409a44deb8ef1da4c90db92b8bf3c6f97fa0 /runtime/filetype.vim
parentcb626a4692df7154be02b47d6089ec679e95cb44 (diff)
patch 9.0.1282: Ron files are not recognizedv9.0.1282
Problem: Ron files are not recognized. Solution: Recognize Ron files. (Amaan Qureshi, closes #11948)
Diffstat (limited to 'runtime/filetype.vim')
-rw-r--r--runtime/filetype.vim7
1 files changed, 5 insertions, 2 deletions
diff --git a/runtime/filetype.vim b/runtime/filetype.vim
index b4a9564181..c0c87ff177 100644
--- a/runtime/filetype.vim
+++ b/runtime/filetype.vim
@@ -1717,12 +1717,15 @@ au BufNewFile,BufRead *.robot,*.resource setf robot
" Robots.txt
au BufNewFile,BufRead robots.txt setf robots
-" Rpcgen
-au BufNewFile,BufRead *.x setf rpcgen
+" RON (Rusty Object Notation)
+au BufNewFile,BufRead *.ron setf ron
" MikroTik RouterOS script
au BufRead,BufNewFile *.rsc setf routeros
+" Rpcgen
+au BufNewFile,BufRead *.x setf rpcgen
+
" reStructuredText Documentation Format
au BufNewFile,BufRead *.rst setf rst