Questions tagged [help-system]
Questions about Vim's built-in help system, which is accessible through the :help command
117 questions
2 votes
1 answer
80 views
What is the name of the "echo" buffer?
If I use command like :echo something I get the output in a buffer just under the status line. For example if I do let g:seed = srand() :echo range(10)->map({-> rand(g:seed)})->join("\n&...
0 votes
1 answer
320 views
How do I know when a feature was added to Vim?
I was writing a very simple autoload function in my vimrc related to window layout stuff. Unavoidably, I used both :help and AI chatbot when I need some hints about what are the features available to ...
1 vote
3 answers
175 views
What does ' mean in the :mark command notation?
Commands :k and :mark have the following notation in Vim help: :[range]ma[rk] {a-zA-Z'} :[range]k{a-zA-Z'} What does the ' symbol stand for? Does this mean that it's a reference to the marks and not ...
3 votes
1 answer
98 views
How can I format help docs?
I am writing a help doc. How can I format it automatically, so that lines will wrap and be in the correct columns? For example, if I were editing the :help E199 section, CLOSE ...
1 vote
3 answers
194 views
Open Vim help in vertical split
There seems to be a few posts about this, e.g.: Opening Vim help in a vertical split window. The following works for me - opening help docs in vertical split at left - placed in ~/vimfiles/ftplugin/...
1 vote
1 answer
104 views
No syntax in help files (how to debug?)
Suddenly, it seems that I have no syntax in my help files. I do have help in Neovim\share\nvim\runtime\syntax , and &ft is help. Not sure how to debug it.
0 votes
2 answers
104 views
Why does the :ls command not display :help buffers?
When I use :ls in Vim, I can see the list of open buffers. But when I open a buffer for documentation, for example :h help, I cannot see an entry for it in the :ls list, even if I open it by :tab h ...
0 votes
1 answer
60 views
vimhelp formatting: escaping backticks within inline backquoted fragments
I'm new at writing / editing vimhelp doc/plugin.txt files. I've seen backquotes used as a form of quoting literal commands, mappings etc like in Markdown (though :h help-writing seems to imply this ...
0 votes
1 answer
125 views
Go to error messages' `:help`
How can I search the help entry for the last errors after the execution? Example " try to run a command that doesn't exist :qwerty E492: Not an editor command: qwerty I usually use :echo errmsg, ...
0 votes
0 answers
49 views
Making helpfiles from perls POD
Is there a possibility to make vim helpfiles from pers POD? I know there is pod2text, pod2html, ... Is there somting like pod2vim too? EDIT: Example =pod =head1 Headline 1 abc =head1 Headline 2 ...
3 votes
0 answers
139 views
How to look up neovim command for existing Vim command?
This is a question about using the help docs. I find Vim's documentation really easy to navigate, I've done it a lot, and there was the user manual to explain the system. But I find neovim's ...
0 votes
1 answer
121 views
Unable to jump to a subject in the help file in macOS X
I have a Swiss keyboard where the ']' is created with the CTRL-ALT-5 key combination. I remapped it to the 'à' character as so: keymap.set({"n", "o", "x"}, "à", ...
1 vote
1 answer
115 views
Vim help outputs gibberish
While going through the vimtutor, I was supposed to execute commands to access help. Executing :help worked, but once I executed :help w, :help user-manual the output became gibberish. The error code ...
1 vote
2 answers
195 views
Search for all hotkeys starting with "g" in Vim's "quickref.txt"
Within the quickref.txt (which can be reached by typing in :tab help quickref) I can see plainly texts, pages after pages, that look like: h N h left (also: CTRL-H, <BS>, or &...
0 votes
0 answers
67 views
How can I stop Vim from quitting when the last buffer is a `:help` buffer?
I think there is an option that governs this behavior, but I cannot find it.