Skip to content

Commit adc2182

Browse files
committed
Updated runtime files.
1 parent 337ae06 commit adc2182

22 files changed

Lines changed: 2313 additions & 1247 deletions

runtime/autoload/netrw.vim

Lines changed: 738 additions & 532 deletions
Large diffs are not rendered by default.

runtime/compiler/g95.vim

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
" Compiler: G95
2+
" Maintainer: H Xu <xuhdev@gmail.com>
3+
" Version: 0.1.3
4+
" Last Change: 2011 Apr 01
5+
" Homepage: http://www.vim.org/scripts/script.php?script_id=3492
6+
" https://bitbucket.org/xuhdev/compiler-g95.vim
7+
" License: Same as Vim
8+
9+
if exists('current_compiler')
10+
finish
11+
endif
12+
let current_compiler = 'g95'
13+
14+
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15+
command -nargs=* CompilerSet setlocal <args>
16+
endif
17+
18+
CompilerSet errorformat=
19+
\%AIn\ file\ %f:%l,
20+
\%-C%p1,
21+
\%-Z%trror:\ %m,
22+
\%-Z%tarning\ (%n):\ %m,
23+
\%-C%.%#

runtime/compiler/gfortran.vim

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
" Compiler: GNU Fortran Compiler
2+
" Maintainer: H Xu <xuhdev@gmail.com>
3+
" Version: 0.1.3
4+
" Last Change: 19 March 2011
5+
" Homepage: http://www.vim.org/scripts/script.php?script_id=3496
6+
" https://bitbucket.org/xuhdev/compiler-gfortran.vim
7+
" License: Same as Vim
8+
9+
if exists('current_compiler')
10+
finish
11+
endif
12+
let current_compiler = 'gfortran'
13+
14+
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15+
command -nargs=* CompilerSet setlocal <args>
16+
endif
17+
18+
CompilerSet errorformat=
19+
\%A%f:%l.%c:,
20+
\%-Z%trror:\ %m,
21+
\%-Z%tarning:\ %m,
22+
\%-C%.%#

runtime/compiler/ifort.vim

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
" Compiler: Intel Fortran Compiler
2+
" Maintainer: H Xu <xuhdev@gmail.com>
3+
" Version: 0.1.1
4+
" Last Change: 19 March 2011
5+
" Homepage: http://www.vim.org/scripts/script.php?script_id=3497
6+
" https://bitbucket.org/xuhdev/compiler-ifort.vim
7+
" License: Same as Vim
8+
9+
if exists('current_compiler')
10+
finish
11+
endif
12+
let current_compiler = 'ifort'
13+
14+
if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15+
command -nargs=* CompilerSet setlocal <args>
16+
endif
17+
18+
CompilerSet errorformat=
19+
\%A%f(%l):\ %trror\ \#%n:\ %m,
20+
\%A%f(%l):\ %tarning\ \#%n:\ %m,
21+
\%-Z%p^,
22+
\%-G%.%#

runtime/doc/cmdline.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*cmdline.txt* For Vim version 7.3. Last change: 2011 Feb 10
1+
*cmdline.txt* For Vim version 7.3. Last change: 2011 Mar 27
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -83,28 +83,28 @@ CTRL-V Insert next non-digit literally. Up to three digits form the
8383
CTRL-Q Same as CTRL-V. But with some terminals it is used for
8484
control flow, it doesn't work then.
8585

86-
*c_<Left>*
86+
*c_<Left>* *c_Left*
8787
<Left> cursor left
88-
*c_<Right>*
88+
*c_<Right>* *c_Right*
8989
<Right> cursor right
9090
*c_<S-Left>*
9191
<S-Left> or <C-Left> *c_<C-Left>*
9292
cursor one WORD left
9393
*c_<S-Right>*
9494
<S-Right> or <C-Right> *c_<C-Right>*
9595
cursor one WORD right
96-
CTRL-B or <Home> *c_CTRL-B* *c_<Home>*
96+
CTRL-B or <Home> *c_CTRL-B* *c_<Home>* *c_Home*
9797
cursor to beginning of command-line
98-
CTRL-E or <End> *c_CTRL-E* *c_<End>*
98+
CTRL-E or <End> *c_CTRL-E* *c_<End>* *c_End*
9999
cursor to end of command-line
100100

101101
*c_<LeftMouse>*
102102
<LeftMouse> Move the cursor to the position of the mouse click.
103103

104-
CTRL-H *c_<BS>* *c_CTRL-H*
104+
CTRL-H *c_<BS>* *c_CTRL-H* *c_BS*
105105
<BS> Delete the character in front of the cursor (see |:fixdel| if
106106
your <BS> key does not do what you want).
107-
*c_<Del>*
107+
*c_<Del>* *c_Del*
108108
<Del> Delete the character under the cursor (at end of line:
109109
character before the cursor) (see |:fixdel| if your <Del>
110110
key does not do what you want).
@@ -118,7 +118,7 @@ CTRL-U Remove all characters between the cursor position and
118118
preferred behavior, add the following to your .vimrc: >
119119
:cnoremap <C-U> <C-E><C-U>
120120
<
121-
*c_<Insert>*
121+
*c_<Insert>* *c_Insert*
122122
<Insert> Toggle between insert and overstrike. {not in Vi}
123123

124124
{char1} <BS> {char2} or *c_digraph*
@@ -224,9 +224,9 @@ CTRL-Y When there is a modeless selection, copy the selection into
224224
the clipboard. |modeless-selection|
225225
If there is no selection CTRL-Y is inserted as a character.
226226

227-
CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>*
227+
CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>* *c_CR*
228228
<CR> or <NL> start entered command
229-
*c_<Esc>*
229+
*c_<Esc>* *c_Esc*
230230
<Esc> When typed and 'x' not present in 'cpoptions', quit
231231
Command-line mode without executing. In macros or when 'x'
232232
present in 'cpoptions', start entered command.
@@ -235,12 +235,12 @@ CTRL-J *c_CTRL-J* *c_<NL>* *c_<CR>*
235235
*c_CTRL-C*
236236
CTRL-C quit command-line without executing
237237

238-
*c_<Up>*
238+
*c_<Up>* *c_Up*
239239
<Up> recall older command-line from history, whose beginning
240240
matches the current command-line (see below).
241241
{not available when compiled without the |+cmdline_hist|
242242
feature}
243-
*c_<Down>*
243+
*c_<Down>* *c_Down*
244244
<Down> recall more recent command-line from history, whose beginning
245245
matches the current command-line (see below).
246246
{not available when compiled without the |+cmdline_hist|
@@ -865,7 +865,7 @@ These modifiers can be given, in this order:
865865
After this, the previous modifiers can be used again. For
866866
example ":p", to make a full path after the substitution.
867867
:gs?pat?sub?
868-
Substitute all occurrences of "path" with "sub". Otherwise
868+
Substitute all occurrences of "pat" with "sub". Otherwise
869869
this works like ":s".
870870

871871
Examples, when the file name is "src/version.c", current dir

0 commit comments

Comments
 (0)