diff options
-rw-r--r-- | autoload.vim | 3 | ||||
-rw-r--r-- | easytags.vim | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/autoload.vim b/autoload.vim index 91b3a71..1607e45 100644 --- a/autoload.vim +++ b/autoload.vim @@ -522,7 +522,8 @@ endif call easytags#define_tagkind({ \ 'filetype': 'php', \ 'hlgroup': 'phpFunctions', - \ 'filter': 'get(v:val, "kind") ==# "f"'}) + \ 'filter': 'get(v:val, "kind") ==# "f"', + \ 'pattern_suffix': '(\@='}) call easytags#define_tagkind({ \ 'filetype': 'php', diff --git a/easytags.vim b/easytags.vim index 3c9c7df..2ae26ac 100644 --- a/easytags.vim +++ b/easytags.vim @@ -4,7 +4,7 @@ " URL: http://peterodding.com/code/vim/easytags/ " Requires: Exuberant Ctags (http://ctags.sf.net) " License: MIT -" Version: 2.1.10 +" Version: 2.1.11 " Support for automatic update using the GLVS plug-in. " GetLatestVimScripts: 3114 1 :AutoInstall: easytags.zip |