Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions doc/builtin.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Oct 12
*builtin.txt* For Vim バージョン 9.1. Last change: 2024 Oct 16


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -9568,6 +9568,8 @@ setqflist({list} [, {action} [, {what}]]) *setqflist()*
はリストをクリアするのにも使える: >
:call setqflist([], 'r')
<
'u' 'r' と同様だが、quickfix リスト内の現在の選択を保持し
ようとする。
'f' quickfix スタック内のすべての quickfix リストが解放さ
れる。

Expand Down Expand Up @@ -11694,7 +11696,7 @@ wildmenumode() *wildmenumode()*
には: >
:cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
<
(Note 'wildcharm' オプションが適切に設定されている必要がある)
(Note: 'wildcharm' オプションが適切に設定されている必要がある)

戻り値の型: |Number|

Expand Down
6 changes: 4 additions & 2 deletions en/builtin.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*builtin.txt* For Vim version 9.1. Last change: 2024 Oct 12
*builtin.txt* For Vim version 9.1. Last change: 2024 Oct 16


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -9766,6 +9766,8 @@ setqflist({list} [, {action} [, {what}]]) *setqflist()*
clear the list: >
:call setqflist([], 'r')
<
'u' Like 'r', but tries to preserve the current selection
in the quickfix list.
'f' All the quickfix lists in the quickfix stack are
freed.

Expand Down Expand Up @@ -11952,7 +11954,7 @@ wildmenumode() *wildmenumode()*
For example to make <c-j> work like <down> in wildmode, use: >
:cnoremap <expr> <C-j> wildmenumode() ? "\<Down>\<Tab>" : "\<c-j>"
<
(Note, this needs the 'wildcharm' option set appropriately).
(Note: this needs the 'wildcharm' option set appropriately).

Return type: |Number|

Expand Down