mirror of
https://github.com/neovim/neovim.git
synced 2026-08-28 01:51:52 +00:00
docs: misc (#29622)
Co-authored-by: Christian Clason <c.clason@uni-graz.at> Co-authored-by: zeertzjq <zeertzjq@outlook.com>
This commit is contained in:
2
runtime/doc/builtin.txt
generated
2
runtime/doc/builtin.txt
generated
@@ -3583,7 +3583,7 @@ id({expr}) *id()*
|
||||
Note that `v:_null_string`, `v:_null_list`, `v:_null_dict` and
|
||||
`v:_null_blob` have the same `id()` with different types
|
||||
because they are internally represented as NULL pointers.
|
||||
`id()` returns a hexadecimal representanion of the pointers to
|
||||
`id()` returns a hexadecimal representation of the pointers to
|
||||
the containers (i.e. like `0x994a40`), same as `printf("%p",
|
||||
{expr})`, but it is advised against counting on the exact
|
||||
format of the return value.
|
||||
|
||||
@@ -401,7 +401,7 @@ tag char note action in Normal mode ~
|
||||
|q| q{0-9a-zA-Z"} record typed characters into named register
|
||||
{0-9a-zA-Z"} (uppercase to append)
|
||||
|q| q (while recording) stops recording
|
||||
|Q| Q replay last recorded macro
|
||||
|Q| Q 2 replay last recorded register
|
||||
|q:| q: edit : command-line in command-line window
|
||||
|q/| q/ edit / command-line in command-line window
|
||||
|q?| q? edit ? command-line in command-line window
|
||||
@@ -740,7 +740,7 @@ tag char note action in Normal mode ~
|
||||
search pattern and Visually select it
|
||||
|gP| ["x]gP 2 put the text [from register x] before the
|
||||
cursor N times, leave the cursor after it
|
||||
|gQ| gQ switch to "Ex" mode with Vim editing
|
||||
|gQ| gQ switch to "Ex" mode with Vim editing
|
||||
|gR| gR 2 enter Virtual Replace mode
|
||||
|gT| gT go to the previous tab page
|
||||
|gU| gU{motion} 2 make Nmove text uppercase
|
||||
@@ -927,7 +927,6 @@ tag command note action in Visual mode ~
|
||||
|v_O| O move horizontally to other corner of area
|
||||
|v_P| P replace highlighted area with register
|
||||
contents; registers are unchanged
|
||||
Q does not start Ex mode
|
||||
|v_R| R 2 delete the highlighted lines and start
|
||||
insert
|
||||
|v_S| S 2 delete the highlighted lines and start
|
||||
|
||||
@@ -215,7 +215,7 @@ gx Opens the current filepath or URL (decided by
|
||||
This implies that an insert command must be completed
|
||||
(to start Insert mode, see |:startinsert|). A ":"
|
||||
command must be completed as well. And you can't use
|
||||
"Q" or "gQ" to start Ex mode.
|
||||
"gQ" to start Ex mode.
|
||||
|
||||
The display is not updated while ":normal" is busy.
|
||||
|
||||
|
||||
2
runtime/lua/vim/_meta/vimfn.lua
generated
2
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -4316,7 +4316,7 @@ function vim.fn.iconv(string, from, to) end
|
||||
--- Note that `v:_null_string`, `v:_null_list`, `v:_null_dict` and
|
||||
--- `v:_null_blob` have the same `id()` with different types
|
||||
--- because they are internally represented as NULL pointers.
|
||||
--- `id()` returns a hexadecimal representanion of the pointers to
|
||||
--- `id()` returns a hexadecimal representation of the pointers to
|
||||
--- the containers (i.e. like `0x994a40`), same as `printf("%p",
|
||||
--- {expr})`, but it is advised against counting on the exact
|
||||
--- format of the return value.
|
||||
|
||||
Reference in New Issue
Block a user