diff options
author | Bart Trojanowski <bart@jukie.net> | 2009-11-27 13:06:46 -0500 |
---|---|---|
committer | Bart Trojanowski <bart@jukie.net> | 2009-11-27 13:06:46 -0500 |
commit | d1eb2c6ce55fa3cf3ea97d27c3dbb4c2b69419da (patch) | |
tree | 0d43f99a7e96d8f5a468ca44eb9bba6e8787de03 /vim/plugin | |
parent | efa9df2d49b522cc981dc1ab0637219047753483 (diff) |
vim: make it possible to replace NM_cobine_tags()
Diffstat (limited to 'vim/plugin')
-rw-r--r-- | vim/plugin/notmuch.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index daff4aab..8ef6ac5a 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -1213,7 +1213,7 @@ endfunction " example: " NM_combine_tags('tag:', ['one', 'two', 'three'], 'OR', '()') " -> ['(', 'tag:one', 'OR', 'tag:two', 'OR', 'tag:three', ')'] -function s:NM_combine_tags(word_prefix, words, separator, brackets) +function! s:NM_combine_tags(word_prefix, words, separator, brackets) let res = [] for word in a:words if len(res) && strlen(a:separator) |