summaryrefslogtreecommitdiffstats
path: root/runtime/ftplugin/haml.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-05 22:47:25 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-05 22:47:25 +0100
commitc08ee7476b19f9b4de5df287797af87c4e3fba0a (patch)
tree2e62f5130c143d521d8155dbf79038047e6b33fe /runtime/ftplugin/haml.vim
parente38eab22c1fb950127f0307a9904de6d4561dc70 (diff)
Update runtime files.
Diffstat (limited to 'runtime/ftplugin/haml.vim')
-rw-r--r--runtime/ftplugin/haml.vim6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/ftplugin/haml.vim b/runtime/ftplugin/haml.vim
index e74530b556..6f30169958 100644
--- a/runtime/ftplugin/haml.vim
+++ b/runtime/ftplugin/haml.vim
@@ -1,7 +1,7 @@
" Vim filetype plugin
" Language: Haml
" Maintainer: Tim Pope <vimNOSPAM@tpope.org>
-" Last Change: 2016 Aug 29
+" Last Change: 2019 Dec 05
" Only do this when not done yet for this buffer
if exists("b:did_ftplugin")
@@ -37,6 +37,8 @@ endif
runtime! ftplugin/ruby.vim ftplugin/ruby_*.vim ftplugin/ruby/*.vim
let b:did_ftplugin = 1
+let &l:define .= empty(&l:define ? '' : '\|') . '^\s*\%(%\w*\)\=\%(\.[[:alnum:]_-]\+\)*#'
+
" Combine the new set of values with those previously included.
if exists("b:undo_ftplugin")
let s:undo_ftplugin = b:undo_ftplugin . " | " . s:undo_ftplugin
@@ -60,7 +62,7 @@ endif
setlocal comments= commentstring=-#\ %s
-let b:undo_ftplugin = "setl cms< com< "
+let b:undo_ftplugin = "setl def< cms< com< "
\ " | unlet! b:browsefilter b:match_words | " . s:undo_ftplugin
let &cpo = s:save_cpo