Skip to content

Update tabpage.{txt,jax} #1477

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

Merged
merged 1 commit into from
Apr 6, 2024
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
10 changes: 5 additions & 5 deletions doc/tabpage.jax
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*tabpage.txt* For Vim バージョン 9.1. Last change: 2022 Feb 02
*tabpage.txt* For Vim バージョン 9.1. Last change: 2024 Mar 25


VIMリファレンスマニュアル by Bram Moolenaar
Expand Down Expand Up @@ -197,7 +197,7 @@ gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
:1tabnext " 最初のタブページに移動する
:$tabnext " 最後のタブページに移動する
:tabnext $ " 同上
:tabnext # " 最後にアクセスしたタブページに移動する
:tabnext # " 最後にアクセスしたタブページに移動する
:tabnext - " 前のタブページに移動する
:tabnext -1 " 同上
:tabnext + " 次のタブページに移動する
Expand Down Expand Up @@ -249,16 +249,16 @@ g<Tab> 最後にアクセスしたタブページへ移動します。
:tabm[ove] [N] *:tabm* *:tabmove*
:[N]tabm[ove]
カレントタブページを N 番目のタブページの後ろに移動します。カ
レントタブページを一番目のタブページにするにはゼロを指定します
レントタブページを1番目のタブページにするにはゼロを指定します
N は移動前に数えられるので、2番目のタブがカレントタブであれば、
`:tabmove 1` と `:tabmove 2` は効果がありません。
N を省略すると最後に移動します。 >
:.tabmove " 何もしない
:-tabmove " タブページを左に移動
:+tabmove " タブページを右に移動
:0tabmove " タブページを左端に移動
:0tabmove " タブページを先頭に移動
:tabmove 0 " 同上
:tabmove " タブページを右端に移動
:tabmove " タブページを最後尾に移動
:$tabmove " 同上
:tabmove $ " 同上
:tabmove # " 最後にアクセスしたタブページの後ろにタブペー
Expand Down
9 changes: 4 additions & 5 deletions en/tabpage.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
*tabpage.txt* For Vim version 9.1. Last change: 2022 Feb 02
*tabpage.txt* For Vim version 9.1. Last change: 2024 Mar 25


VIM REFERENCE MANUAL by Bram Moolenaar
Expand Down Expand Up @@ -196,7 +196,7 @@ gt *i_CTRL-<PageDown>* *i_<C-PageDown>*
:1tabnext " go to the first tab page
:$tabnext " go to the last tab page
:tabnext $ " as above
:tabnext # " go to the last accessed tab page
:tabnext # " go to the last accessed tab page
:tabnext - " go to the previous tab page
:tabnext -1 " as above
:tabnext + " go to the next tab page
Expand Down Expand Up @@ -248,13 +248,12 @@ REORDERING TAB PAGES:
Move the current tab page to after tab page N. Use zero to
make the current tab page the first one. N is counted before
the move, thus if the second tab is the current one,
`:tabmove 1` and `:tabmove 2` have no effect.
`:tabmove 1` and `:tabmove 2` have no effect.
Without N the tab page is made the last one. >
:.tabmove " do nothing
:-tabmove " move the tab page to the left
:+tabmove " move the tab page to the right
:0tabmove " move the tab page to the beginning of the tab
" list
:0tabmove " move the tab page to the first
:tabmove 0 " as above
:tabmove " move the tab page to the last
:$tabmove " as above
Expand Down