File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- *usr_41.txt* For Vim バージョン 9.1. Last change: 2024 Feb 01
1+ *usr_41.txt* For Vim バージョン 9.1. Last change: 2024 Feb 25
22
33 VIM USER MANUAL - by Bram Moolenaar
44
@@ -905,6 +905,7 @@ Blob 操作: *blob-functions*
905905
906906カレントバッファで動作するもの: *text-functions*
907907 getline() バッファから行を得る
908+ getregion() バッファからテキストの領域を得る
908909 setline() バッファの行を置き換える
909910 append() 行または行のリストをバッファに追加する
910911 indent() 行のインデントを得る
Original file line number Diff line number Diff line change 1- *usr_41.txt* For Vim version 9.1. Last change: 2024 Feb 01
1+ *usr_41.txt* For Vim version 9.1. Last change: 2024 Feb 25
22
33 VIM USER MANUAL - by Bram Moolenaar
44
@@ -69,7 +69,7 @@ The output of the example code is:
6969
7070In the first line the `vim9script ` command makes clear this is a new, | Vim9 |
7171script file. That matters for how the rest of the file is used. It is
72- recommended to put it in the very fist line, before any comments.
72+ recommended to put it in the very first line, before any comments.
7373 *vim9-declarations*
7474The `var i = 1` command declares the "i" variable and initializes it. The
7575generic form is: >
@@ -929,6 +929,7 @@ Cursor and mark position: *cursor-functions* *mark-functions*
929929
930930Working with text in the current buffer: *text-functions*
931931 getline() get a line or list of lines from the buffer
932+ getregion() get a region of text from the buffer
932933 setline() replace a line in the buffer
933934 append() append line or list of lines in the buffer
934935 indent() indent of a specific line
You can’t perform that action at this time.
0 commit comments