vim-patch:8.2.3598: RouterOS filetype is not recognized

Problem:    RouterOS filetype is not recognized.
Solution:   Add file and script patterns. (closes vim/vim#9097)
0818ab82e7
This commit is contained in:
Christian Clason
2021-11-15 23:02:33 +01:00
parent 87a053f126
commit e5ef736dfe
2 changed files with 5 additions and 0 deletions

View File

@@ -1486,6 +1486,9 @@ au BufNewFile,BufRead robots.txt setf robots
" Rpcgen " Rpcgen
au BufNewFile,BufRead *.x setf rpcgen au BufNewFile,BufRead *.x setf rpcgen
" MikroTik RouterOS script
au BufRead,BufNewFile *.rsc setf routeros
" reStructuredText Documentation Format " reStructuredText Documentation Format
au BufNewFile,BufRead *.rst setf rst au BufNewFile,BufRead *.rst setf rst

View File

@@ -419,6 +419,7 @@ let s:filename_checks = {
\ 'rnc': ['file.rnc'], \ 'rnc': ['file.rnc'],
\ 'rng': ['file.rng'], \ 'rng': ['file.rng'],
\ 'robots': ['robots.txt'], \ 'robots': ['robots.txt'],
\ 'routeros': ['file.rsc'],
\ 'rpcgen': ['file.x'], \ 'rpcgen': ['file.x'],
\ 'rpl': ['file.rpl'], \ 'rpl': ['file.rpl'],
\ 'rst': ['file.rst'], \ 'rst': ['file.rst'],
@@ -659,6 +660,7 @@ let s:script_checks = {
\ 'yaml': [['%YAML 1.2']], \ 'yaml': [['%YAML 1.2']],
\ 'pascal': [['#!/path/instantfpc']], \ 'pascal': [['#!/path/instantfpc']],
\ 'fennel': [['#!/path/fennel']], \ 'fennel': [['#!/path/fennel']],
\ 'routeros': [['#!/path/rsc']],
\ } \ }
" Various forms of "env" optional arguments. " Various forms of "env" optional arguments.