From 5126967d095e92c73c772e0e918554d378a43ef1 Mon Sep 17 00:00:00 2001 From: Rane Brown Date: Thu, 2 Jan 2020 20:53:48 -0700 Subject: [PATCH] Rename VimwikiGenerateTags -> VimwikiGenerateTagLinks Closes #796 --- doc/vimwiki.txt | 5 +++-- ftplugin/vimwiki.vim | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/vimwiki.txt b/doc/vimwiki.txt index 796048e..0ac866d 100644 --- 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 index d873eee..b1bd96c 100644 --- a/ftplugin/vimwiki.vim +++ b/ftplugin/vimwiki.vim @@ -303,7 +303,7 @@ command! -buffer -bang VimwikiRebuildTags call vimwiki#tags#update_tags(1, ':/ command! -buffer -nargs=* -complete=custom,vimwiki#tags#complete_tags - \ VimwikiGenerateTags call vimwiki#tags#generate_tags(1, ) + \ VimwikiGenerateTagLinks call vimwiki#tags#generate_tags(1, ) command! -buffer VimwikiPasteUrl call vimwiki#html#PasteUrl(expand('%:p')) command! -buffer VimwikiCatUrl call vimwiki#html#CatUrl(expand('%:p'))