Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update motion.{txt,jax} #1872

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 7 additions & 1 deletion doc/motion.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*motion.txt* For Vim バージョン 9.1. Last change: 2024 Oct 06
*motion.txt* For Vim バージョン 9.1. Last change: 2024 Dec 17


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -94,6 +94,7 @@
1. 移動コマンドが排他的で移動後の位置が1桁目であれば、移動の最後は一行前の行の
最後に動かされ、移動コマンドは内包的になります。例: "}" は段落の後の最初の
行まで移動しますが "d}" はその行を含めません。

*exclusive-linewise*
2. 移動コマンドが排他的で、移動後の位置が1桁目でかつ移動初めの位置がその行の最
初の非空白文字かその手前の位置であれば、移動コマンドは行単位になります。
Expand Down Expand Up @@ -125,6 +126,11 @@
endif<CR>
Note ":" を使った全ての移動は、排他的な文字単位になることに注意してください。

*inclusive-motion-selection-exclusive*
'selection' が "exclusive" で、|Visual| モードがアクティブかつ、内包的な動作が
使用された場合、カーソル位置は右にもう 1 文字調整され、ビジュアル選択が期待さ
れるテキストを含むようになるので操作できるようになります。

*forced-motion*
☆移動を行単位、文字単位、ブロック単位にする

Expand Down
8 changes: 7 additions & 1 deletion en/motion.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*motion.txt* For Vim version 9.1. Last change: 2024 Oct 06
*motion.txt* For Vim version 9.1. Last change: 2024 Dec 17


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -122,6 +122,12 @@ This cannot be repeated: >
endif<CR>
Note that when using ":" any motion becomes characterwise exclusive.

*inclusive-motion-selection-exclusive*
When 'selection' is "exclusive", |Visual| mode is active and an inclusive
motion has been used, the cursor position will be adjusted by another
character to the right, so that the Visual selection includes the expected
text and can be acted upon.

*forced-motion*
FORCING A MOTION TO BE LINEWISE, CHARACTERWISE OR BLOCKWISE

Expand Down
Loading