diff options
author | Peter Odding <peter@peterodding.com> | 2013-04-18 00:33:54 +0200 |
---|---|---|
committer | Peter Odding <peter@peterodding.com> | 2013-04-18 00:33:54 +0200 |
commit | df42d18bd760e2ef43dfb7dab78561a7da801a62 (patch) | |
tree | cda65b6c8e4d7e04c546010d4c16f44d1627322f /autoload/xolox | |
parent | 44b04871f812418ac0fe7b38e59222de118d07cb (diff) | |
download | vim-easytags-df42d18bd760e2ef43dfb7dab78561a7da801a62.tar.gz |
Bug fix for highlighting of function names in shell scripts
Diffstat (limited to 'autoload/xolox')
-rw-r--r-- | autoload/xolox/easytags.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/autoload/xolox/easytags.vim b/autoload/xolox/easytags.vim index 2088f48..b261a6a 100644 --- a/autoload/xolox/easytags.vim +++ b/autoload/xolox/easytags.vim @@ -1,9 +1,9 @@ " Vim script " Author: Peter Odding <peter@peterodding.com> -" Last Change: January 15, 2012 +" Last Change: April 18, 2013 " URL: http://peterodding.com/code/vim/easytags/ -let g:xolox#easytags#version = '2.8.1' +let g:xolox#easytags#version = '2.8.2' " Public interface through (automatic) commands. {{{1 @@ -923,7 +923,7 @@ call xolox#easytags#define_tagkind({ \ 'filetype': 'sh', \ 'hlgroup': 'shFunctionTag', \ 'tagkinds': 'f', - \ 'pattern_suffix': '\(\s*()\)\@!'}) + \ 'pattern_suffix': '\(\w\|\s*()\)\@!'}) highlight def link shFunctionTag Operator |