-
Notifications
You must be signed in to change notification settings - Fork 65
Update some more files #780
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
1dd8268
Delete hebrew.txt
k-takata a3dcf54
Update quickref
k-takata f359fb9
Update recover
k-takata 8e01dd3
Update repeat
k-takata c7f40ad
Update starting
k-takata 1b4400a
Update syntax
k-takata bdd9f3b
Update tagsrch
k-takata 57cfb8c
Update term
k-takata 2c307b2
Update terminal
k-takata d77ea73
Update textprop
k-takata e0fac11
Update quickref
k-takata 975ea86
Update starting
k-takata b4385da
Update syntax
k-takata File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
*repeat.txt* For Vim バージョン 8.1. Last change: 2019 Sep 20 | ||
*repeat.txt* For Vim バージョン 8.2. Last change: 2019 Dec 07 | ||
|
||
|
||
VIMリファレンスマニュアル by Bram Moolenaar | ||
|
@@ -187,7 +187,7 @@ Vim script の書き方はユーザーマニュアルの41章|usr_41.txt|を参 | |
'runtimepath' か 'packpath' で示された各ディレクトリの | ||
{file}からExコマンドを読み込む。ファイルがなくてもエラ | ||
ーにはならない。 | ||
|
||
例: > | ||
:runtime syntax/c.vim | ||
|
||
|
@@ -402,25 +402,26 @@ CTRL-Vに続けて3つの10進コードを叩くことで入力できる。こ | |
に対しては使用できない。これらはマッピングの中だけで使うことができる。 | ||
|
||
*:source_crnl* *W15* | ||
MS-DOS, Win32 and OS/2: ":source" で読込まれるファイルは通常、行末に<CR><NL>を | ||
持っている。これらは常に働く。もしも行末に<NL>を持つファイルを使っているならば | ||
(例えばUNIXで作られたファイル)、'fileformats' が空でかつ先頭行が<CR>で終わって | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 「空でかつ」→「空でなくかつ」 |
||
なければ正しく認識される。しかしこれは先頭行が ":map <F1> :help^M" (^Mは<CR>) | ||
みたいな内容だった場合には失敗する。ファイルの先頭行が<CR>で終わっていてその1 | ||
行限りの時、先頭行から<CR>が失われてしまうのでエラーメッセージが出るだろう。 | ||
Win32: ":source" で読込まれるファイルは通常、行末に<CR><NL>を持っている。これ | ||
らは常に働く。もしも行末に<NL>を持つファイルを使っているならば (例えばUNIXで作 | ||
られたファイル)、'fileformats' が空でなくかつ先頭行が<CR>で終わってなければ正 | ||
しく認識される。しかしこれは先頭行が ":map <F1> :help^M" (^Mは<CR>) みたいな内 | ||
容だった場合には失敗する。ファイルの先頭行が<CR>で終わっていてその1行限りの時、 | ||
先頭行から<CR>が失われてしまうのでエラーメッセージが出るだろう。 | ||
|
||
Mac Classic: ":source" で読み込まれるファイルは通常、行末に<CR>を持っている。 | ||
これらは常に機能する。もしも行末に<NL>を持つファイルを使っているならば(例えば | ||
UNIXで作られたファイル)、'fileformats' が空でかつ先頭行が<CR>で終わってなけれ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 「空でかつ」→「空でなくかつ」 |
||
ば正しく認識される。先頭行に<CR>を持ち<NL>で改行しているファイルを使用しないよ | ||
うに気をつけること。 | ||
UNIXで作られたファイル)、'fileformats' が空でなくかつ先頭行が<CR>で終わってな | ||
ければ正しく認識される。先頭行に<CR>を持ち<NL>で改行しているファイルを使用しな | ||
いように気をつけること。 | ||
|
||
その他のシステムでは、Vimは ":source" で読込まれたファイルの行末は<NL>であるこ | ||
とを期待する。これは常に働く。もしも行末が<CR><NL>であるファイル(例えばMS-DOS | ||
で作られたファイル)を使っているならば、全ての行が末尾に<CR>を持っていることに | ||
なる。これは幾つかのコマンドにとって問題となるだろう(例、マッピング)。自動的に | ||
行末記号を検出する機構はない。なぜなら<CR>で終了するマッピングの定義をファイル | ||
の先頭に書くことは一般的で、自動検出用の仕組みを作るのが難しいからである。 | ||
とを期待する。これは常に働く。もしも行末が<CR><NL>であるファイル(例えばMS- | ||
Windowsで作られたファイル)を使っているならば、全ての行が末尾に<CR>を持っている | ||
ことになる。これは幾つかのコマンドにとって問題となるだろう(例、マッピング)。自 | ||
動的に行末記号を検出する機構はない。なぜなら<CR>で終了するマッピングの定義を | ||
ファイルの先頭に書くことは一般的で、自動検出用の仕組みを作るのが難しいからであ | ||
る。 | ||
|
||
*line-continuation* | ||
":source" で読込まれたExコマンドスクリプトのファイル内の長い行は、行継続記号 | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.