diff options
author | Zoe Roux <zoe.roux-stg@nickel.eu> | 2022-05-02 10:29:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-05-02 10:29:31 +0100 |
commit | 2096a5f128029b1156a035a27c988995db240cea (patch) | |
tree | 11e36f296567a089ff5c994ef637558a2eeb770c /runtime | |
parent | 2f7e00a8aeceaf1d682d9e797149c1c51654ff68 (diff) | |
download | vim-git-2096a5f128029b1156a035a27c988995db240cea.tar.gz |
patch 8.2.4855: robot files are not recognizedv8.2.4855
Problem: Robot files are not recognized.
Solution: Add patterns for robot files. (Zoe Roux, closes #10339)
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 c61fd0d70..4f998f93d 100644 --- a/runtime/filetype.vim +++ b/runtime/filetype.vim @@ -1592,6 +1592,9 @@ au BufNewFile,BufRead *.rng setf rng " RPL/2 au BufNewFile,BufRead *.rpl setf rpl +" Robot Framework +au BufNewFile,BufRead *.robot,*.resource setf robot + " Robots.txt au BufNewFile,BufRead robots.txt setf robots |