comparison runtime/ftplugin/rst.vim @ 15878:314694a2e74a

Update runtime files. commit https://github.com/vim/vim/commit/4c92e75dd4ddb68dd92a86dd02d53c70dd4af33a Author: Bram Moolenaar <Bram@vim.org> Date: Sun Feb 17 21:18:32 2019 +0100 Update runtime files.
author Bram Moolenaar <Bram@vim.org>
date Sun, 17 Feb 2019 21:30:08 +0100
parents 9d3d7b0f4861
children 1908e92b02fd
comparison
equal deleted inserted replaced
15877:904e9bd83419 15878:314694a2e74a
28 " directives (..) and ordered lists (1.), although it can cause problems for 28 " directives (..) and ordered lists (1.), although it can cause problems for
29 " many other cases. 29 " many other cases.
30 " 30 "
31 " More sophisticated indentation rules should be revisted in the future. 31 " More sophisticated indentation rules should be revisted in the future.
32 32
33 if !exists("g:rst_style") || g:rst_style != 0 33 if exists("g:rst_style") && g:rst_style != 0
34 setlocal expandtab shiftwidth=3 softtabstop=3 tabstop=8 34 setlocal expandtab shiftwidth=3 softtabstop=3 tabstop=8
35 endif 35 endif
36 36
37 if has('patch-7.3.867') " Introduced the TextChanged event. 37 if has('patch-7.3.867') " Introduced the TextChanged event.
38 setlocal foldmethod=expr 38 setlocal foldmethod=expr