diff options
author | Nicholas Todoroff <nd.todoroff@gmail.com> | 2023-08-29 00:33:12 -0600 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2023-09-10 23:49:05 +0100 |
commit | 1a1a232e4a78d5ab3eb55978606db9a6dc4e78b8 (patch) | |
tree | d592e35535884122e5ba6a06e04924778715621f /doc | |
parent | c6ba54c9027dfbcdf868dd5e9e592f8499c4c6eb (diff) |
Escape special keys in mappings using backslash
* Interpret a string like "\<C-R>" as representing the literal key
sequence '<' 'C' '-' 'R' '>'.
* Add a '<Bslash>' special key so that e.g. the string "<Bslash><C-R>" is
interpreted as the key sequence '\' followed by CTRL-R.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/neovimb.1 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/neovimb.1 b/doc/neovimb.1 index 505b10b..fa3f888 100644 --- a/doc/neovimb.1 +++ b/doc/neovimb.1 @@ -566,6 +566,9 @@ number of keys have no visual representation, a special notation is required. As special key names have the format \fI<...>\fP. The following special keys can be used: <Left>, <Up>, <Right>, <Down> for the cursor keys, <Tab>, <Esc>, <CR>, <Space>, <BS>, <F1>-<F12> and <C-A>-<C-Z>. +If you want an actual sequence of keys like "<", "C", "R", ">" then +escape with a backslash: "\<CR>". If you want a backslash followed by a special +key then use <Bslash>. .TP .PD 0 .BI ":nm[ap] {" lhs "} {" rhs } @@ -1537,6 +1540,9 @@ it might change the behaviour by adding or changing mappings. .IP ":set x-hint-command=:sh! curl -e <C-R>% <C-R>;" This fills the inputbox with the prefilled download command and replaces `<C-R>%' with the current URI and `<C-R>;' with the URI of the hinted element. +.IP ":nnoremap ;f :set x-hint-command=:sh! firefox '\<C-R>;\<CR><CR>;x" +This makes the key sequence ";f" start hinting and then open the hinted URI in +firefox. .PD .RE .TP |