resolve duplicated helptags#2102
Closed
koron wants to merge 1 commit intovim:masterfrom
Closed
Conversation
Problem:
`:helptags $VIMRUNTIME/doc` failed with E154 errors
Solution:
Correct helptags and doc for :tmenu and :tunmenu, delete
duplicated "quickfix-ID" paragraph.
Contributor
|
Taro Muraoka wrote:
Problem: `:helptags $VIMRUNTIME/doc` failed with E154 errors
Solution: Correct helptags and doc for :tmenu and :tunmenu, delete
duplicated "quickfix-ID" paragraph.
Actually, the order in ex_cmds.h is wrong. New entries should alwas be
added to older entries with the same prefix. I had not checked it when
including the patch.
…--
hundred-and-one symptoms of being an internet addict:
143. You dream in pallettes of 216 websafe colors.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\
\\\ an exciting new programming language -- http://www.Zimbu.org ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
|
adizero
pushed a commit
to adizero/vim
that referenced
this pull request
May 19, 2018
Problem: :tm means :tmap instead of :tmenu. (Taro Muraoka) Solution: Move the new entry below the old entry. (closes vim#2102)
janlazo
added a commit
to janlazo/neovim
that referenced
this pull request
Jun 27, 2019
Problem: :tm means :tmap instead of :tmenu. (Taro Muraoka) Solution: Move the new entry below the old entry. (closes vim/vim#2102) vim/vim@63c4e8a
teto
pushed a commit
to teto/neovim
that referenced
this pull request
Jul 1, 2019
Problem: :tm means :tmap instead of :tmenu. (Taro Muraoka) Solution: Move the new entry below the old entry. (closes vim/vim#2102) vim/vim@63c4e8a
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem:
:helptags $VIMRUNTIME/docfailed with E154 errorsSolution: Correct helptags and doc for :tmenu and :tunmenu, delete
duplicated "quickfix-ID" paragraph.