Skip to content

Commit 0bd2ecb

Browse files
authored
Merge pull request #1459 from vim-jp/hh-update-usr_41
Update usr_41.{txt,jax}
2 parents 2c69545 + b839e89 commit 0bd2ecb

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/usr_41.jax

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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() 行のインデントを得る

en/usr_41.txt

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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

7070
In the first line the `vim9script` command makes clear this is a new, |Vim9|
7171
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.
7373
*vim9-declarations*
7474
The `var i = 1` command declares the "i" variable and initializes it. The
7575
generic form is: >
@@ -929,6 +929,7 @@ Cursor and mark position: *cursor-functions* *mark-functions*
929929

930930
Working 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

0 commit comments

Comments
 (0)