diff options
| author | Olivier Roques <ojroques@users.noreply.github.com> | 2020-12-09 11:19:56 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-09 11:19:56 +0100 |
| commit | 222a0452fa4deea3ab914b5f0dbb5c7a405c5033 (patch) | |
| tree | 9dda2ca722b220008f5ef42cc79ddf967a636f85 /runtime/doc | |
| parent | 3974c4bce371f8039da713016c46535d03aeb673 (diff) | |
| download | rneovim-222a0452fa4deea3ab914b5f0dbb5c7a405c5033.tar.gz rneovim-222a0452fa4deea3ab914b5f0dbb5c7a405c5033.tar.bz2 rneovim-222a0452fa4deea3ab914b5f0dbb5c7a405c5033.zip | |
doc: Add missing parameter end_pos for range_formatting (#13481)
Diffstat (limited to 'runtime/doc')
| -rw-r--r-- | runtime/doc/lsp.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/runtime/doc/lsp.txt b/runtime/doc/lsp.txt index de1b230454..3767b25adb 100644 --- a/runtime/doc/lsp.txt +++ b/runtime/doc/lsp.txt @@ -984,6 +984,9 @@ range_formatting({options}, {start_pos}, {end_pos}) Parameters: ~ {options} Table with valid `FormattingOptions` entries. {start_pos} ({number, number}, optional) mark-indexed + position. Defaults to the start of the last + visual selection. + {end_pos} ({number, number}, optional) mark-indexed position. Defaults to the end of the last visual selection. |