Skip to content

Commit 56a9653

Browse files
authored
Merge pull request #1627 from vim-jp/hh-update-editing
Update editing.{txt,jax}
2 parents 9500900 + 4565e87 commit 56a9653

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

doc/editing.jax

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim バージョン 9.1. Last change: 2024 Apr 12
1+
*editing.txt* For Vim バージョン 9.1. Last change: 2024 Jul 10
22

33

44
VIMリファレンスマニュアル by Bram Moolenaar
@@ -1778,8 +1778,8 @@ Win32 でサマータイムが始まる日である。Win32 ライブラリに
17781778
ルを探す。上向き探索の上限となるディレクトリが指定できる。それはパス (オプ
17791779
ション 'path') かファイル名 (オプション 'tags') の末尾に ';' で区切って指定
17801780
する。複数のディレクトリを指定したいときはそれらを ';' で区切る。上限ディレ
1781-
クトリを指定したくないときは (ルートディレクトリまで上向き検索したいとき)
1782-
';' だけを付ける。 >
1781+
クトリを指定したくないとき ("ルートディレクトリまで上向き検索したいとき")
1782+
';' だけを付ける。 >
17831783
/usr/include/sys;/usr
17841784
< で検索されるディレクトリは: >
17851785
/usr/include/sys
@@ -1792,7 +1792,7 @@ Win32 でサマータイムが始まる日である。Win32 ライブラリに
17921792

17931793
Vimのカレントパスが /u/user_x/work/release のときに >
17941794
:set path=include;/u/user_x
1795-
< とすると、コマンド |gf| でファイルを探す範囲は: >
1795+
< とすると、コマンド |gf| でファイルを探す範囲は: >
17961796
/u/user_x/work/release/include
17971797
/u/user_x/work/include
17981798
/u/user_x/include
@@ -1804,7 +1804,7 @@ Win32 でサマータイムが始まる日である。Win32 ライブラリに
18041804
3) 複合検索:
18051805
Vimのカレントパスが /u/user_x/work/release のときに >
18061806
set path=**;/u/user_x
1807-
< とすると、コマンド |gf| でファイルを探す範囲は: >
1807+
< とすると、コマンド |gf| でファイルを探す範囲は: >
18081808
/u/user_x/work/release/**
18091809
/u/user_x/work/**
18101810
/u/user_x/**
@@ -1816,10 +1816,10 @@ Win32 でサマータイムが始まる日である。Win32 ライブラリに
18161816

18171817
上の例では次のように設定したほうがいいかもしれない: >
18181818
:set path=**,/u/user_x/**
1819-
< これに含まれる範囲は
1820-
/u/user_x/work/release/** ~
1821-
/u/user_x/** ~
1822-
となり、同じディレクトリだが順番が違う。
1819+
< これに含まれる範囲は: >
1820+
/u/user_x/work/release/**
1821+
/u/user_x/**
1822+
< となり、同じディレクトリだが順番が違う。
18231823

18241824
Note: 現在 ":find"、":sfind"、":tabfind" コマンドは、'path' アイテムに URL
18251825
や深さ制限付きのダブルスター (/usr/**2) や 上方検索 (;) などが含まれている

en/editing.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*editing.txt* For Vim version 9.1. Last change: 2024 Apr 12
1+
*editing.txt* For Vim version 9.1. Last change: 2024 Jul 10
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1804,7 +1804,7 @@ There are three different types of searching:
18041804
stop-directories are appended to the path (for the 'path' option) or to
18051805
the filename (for the 'tags' option) with a ';'. If you want several
18061806
stop-directories separate them with ';'. If you want no stop-directory
1807-
("search upward till the root directory) just use ';'. >
1807+
("search upward till the root directory") just use ';'. >
18081808
/usr/include/sys;/usr
18091809
< will search in: >
18101810
/usr/include/sys
@@ -1817,7 +1817,7 @@ There are three different types of searching:
18171817

18181818
If Vim's current path is /u/user_x/work/release and you do >
18191819
:set path=include;/u/user_x
1820-
< and then search for a file with |gf| the file is searched in: >
1820+
< and then search for a file with |gf| the file is searched in: >
18211821
/u/user_x/work/release/include
18221822
/u/user_x/work/include
18231823
/u/user_x/include
@@ -1829,7 +1829,7 @@ There are three different types of searching:
18291829
3) Combined up/downward search:
18301830
If Vim's current path is /u/user_x/work/release and you do >
18311831
set path=**;/u/user_x
1832-
< and then search for a file with |gf| the file is searched in: >
1832+
< and then search for a file with |gf| the file is searched in: >
18331833
/u/user_x/work/release/**
18341834
/u/user_x/work/**
18351835
/u/user_x/**
@@ -1841,10 +1841,10 @@ There are three different types of searching:
18411841

18421842
In the above example you might want to set path to: >
18431843
:set path=**,/u/user_x/**
1844-
< This searches:
1845-
/u/user_x/work/release/** ~
1846-
/u/user_x/** ~
1847-
This searches the same directories, but in a different order.
1844+
< This searches: >
1845+
/u/user_x/work/release/**
1846+
/u/user_x/**
1847+
< This searches the same directories, but in a different order.
18481848

18491849
Note that completion for ":find", ":sfind", and ":tabfind" commands do not
18501850
currently work with 'path' items that contain a URL or use the double star

0 commit comments

Comments
 (0)