aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/rrst.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2018-10-29 23:38:41 +0100
committerJustin M. Keyes <justinkz@gmail.com>2018-10-29 23:54:15 +0100
commit2c7ed420d93fdefe5734f2e9cf6b863119d412f3 (patch)
treec916400d4c998a647ace3e49dace3a61404a08ea /runtime/syntax/rrst.vim
parentf5406dfe7772dca82e31f27c042c5718198f0ec8 (diff)
downloadrneovim-2c7ed420d93fdefe5734f2e9cf6b863119d412f3.tar.gz
rneovim-2c7ed420d93fdefe5734f2e9cf6b863119d412f3.tar.bz2
rneovim-2c7ed420d93fdefe5734f2e9cf6b863119d412f3.zip
vim-patch:fc65cabb15d0
Update runtime files. https://github.com/vim/vim/commit/fc65cabb15d0236bce001ad78e12a40511caf941 --- vim-patch:8.0.1279: initializing menus can be slow Problem: Initializing menus can be slow, especially when there are many keymaps, color schemes, etc. Solution: Do the globbing for runtime files lazlily. (Ken Takata)
Diffstat (limited to 'runtime/syntax/rrst.vim')
-rw-r--r--runtime/syntax/rrst.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/syntax/rrst.vim b/runtime/syntax/rrst.vim
index b643af3285..3a56342cd8 100644
--- a/runtime/syntax/rrst.vim
+++ b/runtime/syntax/rrst.vim
@@ -2,7 +2,7 @@
" Language: reST with R code chunks
" Maintainer: Alex Zvoleff, azvoleff@mail.sdsu.edu
" Homepage: https://github.com/jalvesaq/R-Vim-runtime
-" Last Change: Tue Jun 28, 2016 08:53AM
+" Last Change: Thu Apr 05, 2018 11:06PM
"
" CONFIGURATION:
" To highlight chunk headers as R code, put in your vimrc:
@@ -14,7 +14,7 @@ endif
" load all of the rst info
runtime syntax/rst.vim
-unlet b:current_syntax
+unlet! b:current_syntax
" load all of the r syntax highlighting rules into @R
syntax include @R syntax/r.vim