Other help

Various commands

:comp :completions :completions ex-command

List the completion results for a given command substring.

:completions :set! browser.tabs.
:contexts :contexts ex-command

Lists the completion contexts used during the completion of its arguments. These context names may be used to tune the function of the completion system via options like autocomplete and wildcase. Note that completion must be triggered in order for this command to be effective, so if auto-completion is not active, you'll need to press the key at least once. You should also be aware that this command is only useful from the command line.

:fk :feedkeys feedkeys! keys

Fake key events. If ! is given, key remappings are ignored, similarly to the :map command's -builtin option.

-mode
The mode in which to feed the keys (short name -m)
:norm :normal :normal! keys

Execute key mappings for keys as if they were typed in Normal mode. If ! is provided, only builtin key mappings are executed. This makes it possible to fake Normal mode key presses from scripts, key mappings, autocommands, and the command line.

:mks :mksyntax :mksyntax! path

Generate a Vim syntax file. If path is not given, the local Vim runtime path is guessed. If path is a directory, the file &dactyl.name;.vim in that directory is used. An existing file will never be overwritten unless bang is given.

:redr :redraw]]> :redraw

Redraws the screen. Useful for updating the screen during the execution of a script or function.

:run :! :!cmd :!cmd

Run an external command. Runs cmd through system() and displays its output. Any ‘!’ in cmd is replaced with the previous external command, so long as it is not preceded by a backslash and banghist is enabled.

:!! :!!

Repeat last :!cmd.

:sil :silent :silent command

Execute a command silently. Normal messages and error messages generated by the command invocation will not be displayed and will not be added to the message history.

:verb :verbose :countverbose command

Execute a command with verbose set to count. If count is not specified then 1 is used.

:ve :version :version!

Print &dactyl.appName; and &dactyl.host; version information. When ! is provided, show the &dactyl.host; version page.

:yank :y :y[ank] :cmd :y[ank] js

Yanks the output of the given Ex command cmd or JavaScript js to the clipboard.

Online help

:help :h help]]> :help subject <F1>

Open a help page for subject. If subject is omitted, open the default page as specified in helpfile. If you're not sure of the exact topic you need help with, try completion or :help overview.

:helpall :helpa help-all]]> :helpall subject <A-F1>

Open all help pages consolidated into a single page and scroll to subject if given.

See :help.

:lc :listcommands :listcommands filter :lc filter

List all Ex commands matching filter along with their short descriptions. The output contains links to the source code definitions.

:lk :listkeys :listkeys -mode mode filter :lk -mode mode filter

List the key mappings defined for mode (Normal by default) matching filter along with their short descriptions. The output contains links to the source code definitions.

:lo :listoptions :listoptions filter :lo filter

List all options matching filter along with their short descriptions. The output contains links to the source code definitions.

42

What is the meaning of life, the universe and everything? Douglas Adams, the only person who knew what this question really was about is now dead, unfortunately. So now you might wonder what the meaning of death is...

Uncategorized help

]]> <Esc>

Exits Command-line, Insert, or Hints mode and returns to Normal mode. Focuses the content web page.

i]]> i

Start Caret mode. This mode resembles the Vim's Normal mode where the text cursor is visible on the web page. The v key enters Visual mode, where text is selected as the cursor moves.