diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-11-27 10:43:13 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 17:43:13 +0800 |
commit | 2c16c6a6c42f46e290df5441c37572f296aeb09f (patch) | |
tree | 4dc8b602dd210372621ba278297be2fd997709ec /runtime | |
parent | 574d25642fc9ca65b396633aeab6e2d32778b642 (diff) | |
download | rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.tar.gz rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.tar.bz2 rneovim-2c16c6a6c42f46e290df5441c37572f296aeb09f.zip |
docs: small fixes (#26154)
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/doc/builtin.txt | 10 | ||||
-rw-r--r-- | runtime/doc/sign.txt | 6 |
2 files changed, 8 insertions, 8 deletions
diff --git a/runtime/doc/builtin.txt b/runtime/doc/builtin.txt index 5d70c42157..860372767a 100644 --- a/runtime/doc/builtin.txt +++ b/runtime/doc/builtin.txt @@ -6998,11 +6998,11 @@ sign_place({id}, {group}, {name}, {buf} [, {dict}]) *sign_place()* similar to the |:sign-place| command. If the sign identifier {id} is zero, then a new identifier is - allocated (first available id in a buffer). Otherwise the - specified number is used. {group} is the sign group name. To use - the global sign group, use an empty string. {group} functions - as a namespace for {id}, thus two groups can use the same IDs. - Refer to |sign-identifier| and |sign-group| for more information. + allocated. Otherwise the specified number is used. {group} is + the sign group name. To use the global sign group, use an + empty string. {group} functions as a namespace for {id}, thus + two groups can use the same IDs. Refer to |sign-identifier| + and |sign-group| for more information. {name} refers to a defined sign. {buf} refers to a buffer name or number. For the accepted diff --git a/runtime/doc/sign.txt b/runtime/doc/sign.txt index 30fa7eee0b..0360ce67f6 100644 --- a/runtime/doc/sign.txt +++ b/runtime/doc/sign.txt @@ -54,9 +54,9 @@ Each placed sign is identified by a number called the sign identifier. This identifier is used to jump to the sign or to remove the sign. The identifier is assigned when placing the sign using the |:sign-place| command or the |sign_place()| function. Each sign identifier should be a unique number (per -buffer). Placing the same identifier twice will move the previously placed sign. -The |sign_place()| function can be called with a zero sign identifier to allocate -the next available identifier. +buffer). Placing the same identifier twice will move the previously placed +sign. The |sign_place()| function can be called with a zero sign identifier to +allocate the next available identifier. *sign-group* Each placed sign can be assigned to either the global group or a named group. |