File tree 2 files changed +5
-3
lines changed
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
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
@@ -905,6 +905,7 @@ Blob 操作: *blob-functions*
905
905
906
906
カレントバッファで動作するもの: *text-functions*
907
907
getline() バッファから行を得る
908
+ getregion() バッファからテキストの領域を得る
908
909
setline() バッファの行を置き換える
909
910
append() 行または行のリストをバッファに追加する
910
911
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
2
2
3
3
VIM USER MANUAL - by Bram Moolenaar
4
4
@@ -69,7 +69,7 @@ The output of the example code is:
69
69
70
70
In the first line the `vim9script ` command makes clear this is a new, | Vim9 |
71
71
script 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.
73
73
*vim9-declarations*
74
74
The `var i = 1` command declares the "i" variable and initializes it. The
75
75
generic form is: >
@@ -929,6 +929,7 @@ Cursor and mark position: *cursor-functions* *mark-functions*
929
929
930
930
Working with text in the current buffer: *text-functions*
931
931
getline() get a line or list of lines from the buffer
932
+ getregion() get a region of text from the buffer
932
933
setline() replace a line in the buffer
933
934
append() append line or list of lines in the buffer
934
935
indent() indent of a specific line
You can’t perform that action at this time.
0 commit comments