vimwiki

Personal wiki for vim
git clone https://github.com/vimwiki/vimwiki.git
Log | Files | Refs | README | LICENSE

commit 5126967d095e92c73c772e0e918554d378a43ef1
parent 5cdeb9a682e1cc22629e64d84a557a76764369b3
Author: Rane Brown <rane.brown@gmail.com>
Date:   Thu,  2 Jan 2020 20:53:48 -0700

Rename VimwikiGenerateTags -> VimwikiGenerateTagLinks

Closes #796

Diffstat:
Mdoc/vimwiki.txt | 5+++--
Mftplugin/vimwiki.vim | 2+-
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt @@ -924,7 +924,7 @@ Vimwiki file. Searches over the pages in current wiki and finds all locations of a given tag. Supports |cmdline-completion|. -*:VimwikiGenerateTags* tagname1 tagname2 ... +*:VimwikiGenerateTagLinks* tagname1 tagname2 ... Creates or updates an overview on all tags of the wiki with links to all their instances. Supports |cmdline-completion|. If no arguments (tags) are specified, outputs all tags. To make this command work properly, make @@ -1479,7 +1479,7 @@ the tags metadata will be auto-updated on each page save. Tags-related commands and options: * |:VimwikiRebuildTags| - * |:VimwikiGenerateTags| + * |:VimwikiGenerateTagLinks| * |:VimwikiSearchTags| * |vimwiki-option-auto_tags| @@ -3560,6 +3560,7 @@ Removed:~ point. Fixed:~ + * Issue #796: Rename |:VimwikiGenerateTags| to |:VimwikiGenerateTagLinks| * Issue #790: Allow tags before a header with markdown syntax. * Issue #779: Vimwiki tags file meets ctags standard. * Issue #781: Compatablity fixes for older versions of Vim. diff --git a/ftplugin/vimwiki.vim b/ftplugin/vimwiki.vim @@ -303,7 +303,7 @@ command! -buffer -bang VimwikiRebuildTags call vimwiki#tags#update_tags(1, '<ban command! -buffer -nargs=* -complete=custom,vimwiki#tags#complete_tags \ VimwikiSearchTags VimwikiSearch /:<args>:/ command! -buffer -nargs=* -complete=custom,vimwiki#tags#complete_tags - \ VimwikiGenerateTags call vimwiki#tags#generate_tags(1, <f-args>) + \ VimwikiGenerateTagLinks call vimwiki#tags#generate_tags(1, <f-args>) command! -buffer VimwikiPasteUrl call vimwiki#html#PasteUrl(expand('%:p')) command! -buffer VimwikiCatUrl call vimwiki#html#CatUrl(expand('%:p'))