Skip to content

Commit d4b6387

Browse files
committed
Update usr_41 from Vim 8.0 to 8.1
1 parent fbf4c0f commit d4b6387

File tree

2 files changed

+32
-10
lines changed

2 files changed

+32
-10
lines changed

doc/usr_41.jax

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim バージョン 8.0. Last change: 2017 Aug 22
1+
*usr_41.txt* For Vim バージョン 8.1. Last change: 2018 Apr 11
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -786,6 +786,8 @@ substitute() コマンドの前後にいろいろな処理を入れたりする
786786
getbufinfo() バッファの情報一覧を得る
787787
gettabinfo() タブページの情報一覧を得る
788788
getwininfo() ウィンドウの情報一覧を得る
789+
getchangelist() 変更リストのエントリ一覧を得る
790+
getjumplist() ジャンプリストのエントリ一覧を得る
789791

790792
コマンドライン: *command-line-functions*
791793
getcmdline() 現在のコマンドラインを取得
@@ -861,13 +863,15 @@ Quickfixとロケーションリスト: *quickfix-functions*
861863

862864
GUI: *gui-functions*
863865
getfontname() 現在使われているフォントの名前を取得
864-
getwinposx() GUIのVimウィンドウのX座標
865-
getwinposy() GUIのVimウィンドウのY座標
866+
getwinpos() Vimウィンドウの座標
867+
getwinposx() VimウィンドウのX座標
868+
getwinposy() VimウィンドウのY座標
866869
balloon_show() バルーンの内容を設定する
870+
balloon_split() バルーン用にメッセージを分割する
867871

868872
Vimサーバー: *server-functions*
869873
serverlist() サーバー名のリストを返す
870-
remote_startserve() サーバーをスタートする
874+
remote_startserver() サーバーをスタートする
871875
remote_send() Vimサーバーにコマンド文字を送る
872876
remote_expr() Vimサーバーで式を評価する
873877
server2client() Vimサーバーのクライアントに応答を返す
@@ -879,6 +883,7 @@ Vimサーバー: *server-functions*
879883
ウィンドウサイズと位置: *window-size-functions*
880884
winheight() ウィンドウの高さを取得
881885
winwidth() ウィンドウの幅を取得
886+
win_screenpos() ウィンドウのスクリーン座標を取得
882887
winrestcmd() ウィンドウサイズを復元するコマンドを返す
883888
winsaveview() カレントウィンドウのビューを取得
884889
winrestview() カレントウィンドウのビューを復元
@@ -898,7 +903,8 @@ Vimサーバー: *server-functions*
898903
assert_false() 式がfalseかどうかテストする
899904
assert_true() 式がtrueかどうかテストする
900905
assert_exception() コマンドが例外を投げる事をテストする
901-
assert_fails() 関数呼び出しが失敗する事をテストする
906+
assert_beeps() コマンドがビープ音を鳴らすことをテストする
907+
assert_fails() コマンドが失敗する事をテストする
902908
assert_report() テストの失敗をレポートする
903909
test_alloc_fail() メモリの確保を失敗させる
904910
test_autochdir() 起動中に 'autochdir' を有効にする
@@ -960,6 +966,10 @@ Terminal window: *terminal-functions*
960966
term_getstatus() ターミナルのステータスを取得する
961967
term_gettitle() ターミナルのタイトルを取得する
962968
term_gettty() ターミナルの tty 名を取得する
969+
term_setansicolors() GUI で使用される 16 色の ANSI カラーパレットを
970+
設定する
971+
term_getansicolors() GUI で使用される 16 色の ANSI カラーパレットを
972+
取得する
963973

964974
Timers: *timer-functions*
965975
timer_start() タイマーを作る
@@ -988,6 +998,8 @@ Timers: *timer-functions*
988998
getreg() レジスタの値を得る
989999
getregtype() レジスタのタイプを得る
9901000
setreg() レジスタの値を設定する
1001+
reg_executing() 実行中のレジスタ名を返す
1002+
reg_recording() 記録中のレジスタ名を返す
9911003

9921004
shiftwidth() 'shiftwidth' の実際の値
9931005

en/usr_41.txt

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*usr_41.txt* For Vim version 8.0. Last change: 2017 Aug 22
1+
*usr_41.txt* For Vim version 8.1. Last change: 2018 Apr 11
22

33
VIM USER MANUAL - by Bram Moolenaar
44

@@ -807,6 +807,8 @@ Buffers, windows and the argument list:
807807
getbufinfo() get a list with buffer information
808808
gettabinfo() get a list with tab page information
809809
getwininfo() get a list with window information
810+
getchangelist() get a list of change list entries
811+
getjumplist() get a list of jump list entries
810812

811813
Command line: *command-line-functions*
812814
getcmdline() get the current command line
@@ -883,13 +885,15 @@ Interactive: *interactive-functions*
883885

884886
GUI: *gui-functions*
885887
getfontname() get name of current font being used
886-
getwinposx() X position of the GUI Vim window
887-
getwinposy() Y position of the GUI Vim window
888+
getwinpos() position of the Vim window
889+
getwinposx() X position of the Vim window
890+
getwinposy() Y position of the Vim window
888891
balloon_show() set the balloon content
892+
balloon_split() split a message for a balloon
889893

890894
Vim server: *server-functions*
891895
serverlist() return the list of server names
892-
remote_startserve() run a server
896+
remote_startserver() run a server
893897
remote_send() send command characters to a Vim server
894898
remote_expr() evaluate an expression in a Vim server
895899
server2client() send a reply to a client of a Vim server
@@ -901,6 +905,7 @@ Vim server: *server-functions*
901905
Window size and position: *window-size-functions*
902906
winheight() get height of a specific window
903907
winwidth() get width of a specific window
908+
win_screenpos() get screen position of a window
904909
winrestcmd() return command to restore window sizes
905910
winsaveview() get view of current window
906911
winrestview() restore saved view of current window
@@ -920,7 +925,8 @@ Testing: *test-functions*
920925
assert_false() assert that an expression is false
921926
assert_true() assert that an expression is true
922927
assert_exception() assert that a command throws an exception
923-
assert_fails() assert that a function call fails
928+
assert_beeps() assert that a command beeps
929+
assert_fails() assert that a command fails
924930
assert_report() report a test failure
925931
test_alloc_fail() make memory allocation fail
926932
test_autochdir() enable 'autochdir' during startup
@@ -982,6 +988,8 @@ Terminal window: *terminal-functions*
982988
term_getstatus() get the status of a terminal
983989
term_gettitle() get the title of a terminal
984990
term_gettty() get the tty name of a terminal
991+
term_setansicolors() set 16 ANSI colors, used for GUI
992+
term_getansicolors() get 16 ANSI colors, used for GUI
985993

986994
Timers: *timer-functions*
987995
timer_start() create a timer
@@ -1010,6 +1018,8 @@ Various: *various-functions*
10101018
getreg() get contents of a register
10111019
getregtype() get type of a register
10121020
setreg() set contents and type of a register
1021+
reg_executing() return the name of the register being executed
1022+
reg_recording() return the name of the register being recorded
10131023

10141024
shiftwidth() effective value of 'shiftwidth'
10151025

0 commit comments

Comments
 (0)