aboutsummaryrefslogtreecommitdiff
path: root/runtime/syntax/rst.vim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2019-07-29 02:59:32 +0200
committerJustin M. Keyes <justinkz@gmail.com>2019-07-29 20:50:07 +0200
commitef1f1907cc4f9c74fc415d7411aacf8c61a4a38f (patch)
treea64c7538e93005d367e625dd2a6d827926d2fa87 /runtime/syntax/rst.vim
parent4cab90ad8c2f82dbdea71cf240384c5c3ae92d4d (diff)
downloadrneovim-ef1f1907cc4f9c74fc415d7411aacf8c61a4a38f.tar.gz
rneovim-ef1f1907cc4f9c74fc415d7411aacf8c61a4a38f.tar.bz2
rneovim-ef1f1907cc4f9c74fc415d7411aacf8c61a4a38f.zip
vim-patch:4c05fa08c973
Update runtime files https://github.com/vim/vim/commit/4c05fa08c9739e307ddc88ac91ba6d208f1fd68e
Diffstat (limited to 'runtime/syntax/rst.vim')
-rw-r--r--runtime/syntax/rst.vim3
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/syntax/rst.vim b/runtime/syntax/rst.vim
index d620d91f4a..c865cf6905 100644
--- a/runtime/syntax/rst.vim
+++ b/runtime/syntax/rst.vim
@@ -3,7 +3,7 @@
" Maintainer: Marshall Ward <marshall.ward@gmail.com>
" Previous Maintainer: Nikolai Weibull <now@bitwi.se>
" Website: https://github.com/marshallward/vim-restructuredtext
-" Latest Revision: 2018-07-23
+" Latest Revision: 2018-12-29
if exists("b:current_syntax")
finish
@@ -59,6 +59,7 @@ syn keyword rstTodo contained FIXME TODO XXX NOTE
execute 'syn region rstComment contained' .
\ ' start=/.*/'
+ \ ' skip=+^$+' .
\ ' end=/^\s\@!/ contains=rstTodo'
execute 'syn region rstFootnote contained matchgroup=rstDirective' .