docs: misc (#38578)

This commit is contained in:
zeertzjq
2026-04-01 07:59:51 +08:00
committed by GitHub
parent d29db48e0a
commit a89d7dcb91
7 changed files with 14 additions and 14 deletions

View File

@@ -1110,9 +1110,9 @@ inside of strings can change! Also see 'softtabstop' option. >
current line).
*:ip* *:iput*
:[line]ip[ut] [x] like |:put|, but adjust indent to the current line
:[line]ip[ut] [x] Like |:put|, but adjust indent to the current line.
:[line]ip[ut]! [x] like |:put|!, but adjust indent to the current line
:[line]ip[ut]! [x] Like |:put|!, but adjust indent to the current line.
["x]]p or *]p* *]<MiddleMouse>*
["x]]<MiddleMouse> Like "p", but adjust the indent to the current line.

View File

@@ -349,7 +349,7 @@ GUIDELINES
- CI runs tests in parallel via the `functionaltest-parallel` cmake target.
- The Nvim test instance CWD is isolated to per "test group" (see
`WORKING_DIRECTORY` in `cmake/RunTests.cmake`), so tests can write files to
CWD without interferring with other tests running in parallel.
CWD without interfering with other tests running in parallel.
- Luajit needs to know about type and constant declarations used in function
prototypes. The
[testutil.lua](https://github.com/neovim/neovim/blob/master/test/unit/testutil.lua)

View File

@@ -195,12 +195,12 @@ argument.
-es reads/executes stdin as Ex commands. >
printf "put ='foo'\n%%print\n" | nvim -es
< -Es reads stdin as text (into buffer 1). Use |-c| or "+" to
<
-Es reads stdin as text (into buffer 1). Use |-c| or "+" to
send commands. >
printf "foo\n" | nvim -Es +"%print"
< These commands display on stdout:
<
These commands display on stdout:
• :list
• :number
• :print
@@ -427,7 +427,7 @@ argument.
To start the server on-demand with systemd, use a systemd
socket unit and associated service unit running: >
systemd-socket-proxyd --exit-idle-time
systemd-socket-proxyd --exit-idle-time
<
==============================================================================
Initialization *initialization* *startup*