Skip to content

Commit 071e1fe

Browse files
committed
Update if_perl from Vim 8.0 to 8.1
1 parent 981c329 commit 071e1fe

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/if_perl.jax

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*if_perl.txt* For Vim バージョン 8.0. Last change: 2015 Oct 16
1+
*if_perl.txt* For Vim バージョン 8.1. Last change: 2017 Nov 24
22

33

44
VIMリファレンスマニュアル by Sven Verdoolaege
@@ -114,7 +114,7 @@ Vim script の例: >
114114
Perl で使える関数の一覧です: >
115115
116116
:perl VIM::Msg("Text") # メッセージを表示します
117-
:perl VIM::Msg("Error", "ErrorMsg") # エラーメッセージを表示します
117+
:perl VIM::Msg("Wrong!", "ErrorMsg") # エラーメッセージを表示します
118118
:perl VIM::Msg("remark", "Comment") # ハイライトされたメッセージを表示します
119119
:perl VIM::SetOption("ai") # Vim のオプションをセットします
120120
:perl $nbuf = VIM::Buffers() # 全てのバッファ数を返す

en/if_perl.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*if_perl.txt* For Vim version 8.0. Last change: 2015 Oct 16
1+
*if_perl.txt* For Vim version 8.1. Last change: 2017 Nov 24
22

33

44
VIM REFERENCE MANUAL by Sven Verdoolaege
@@ -7,7 +7,7 @@
77
Perl and Vim *perl* *Perl*
88

99
1. Editing Perl files |perl-editing|
10-
2. Compiling VIM with Perl interface |perl-compiling|
10+
2. Compiling Vim with Perl interface |perl-compiling|
1111
3. Using the Perl interface |perl-using|
1212
4. Dynamic loading |perl-dynamic|
1313

@@ -33,7 +33,7 @@ Vim in the $VIMRUNTIME/tools directory. This script has currently more
3333
features than Exuberant ctags' Perl support.
3434

3535
==============================================================================
36-
2. Compiling VIM with Perl interface *perl-compiling*
36+
2. Compiling Vim with Perl interface *perl-compiling*
3737

3838
To compile Vim with Perl interface, you need Perl 5.004 (or later). Perl must
3939
be installed before you compile Vim. Vim's Perl interface does NOT work with
@@ -112,7 +112,7 @@ possible.
112112
Here is an overview of the functions that are available to Perl: >
113113
114114
:perl VIM::Msg("Text") # displays a message
115-
:perl VIM::Msg("Error", "ErrorMsg") # displays an error message
115+
:perl VIM::Msg("Wrong!", "ErrorMsg") # displays an error message
116116
:perl VIM::Msg("remark", "Comment") # displays a highlighted message
117117
:perl VIM::SetOption("ai") # sets a vim option
118118
:perl $nbuf = VIM::Buffers() # returns the number of buffers

0 commit comments

Comments
 (0)