Rename VimwikiGenerateTags -> VimwikiGenerateTagLinks

Closes #796
This commit is contained in:
Rane Brown 2020-01-02 20:53:48 -07:00
parent 5cdeb9a682
commit 5126967d09
2 changed files with 4 additions and 3 deletions

View File

@ -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.

View File

@ -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'))