Skip to content

Commit 1986c34

Browse files
committed
Updated runtime files.
1 parent dc773f2 commit 1986c34

23 files changed

Lines changed: 5309 additions & 7342 deletions

runtime/autoload/netrw.vim

Lines changed: 2354 additions & 1948 deletions
Large diffs are not rendered by default.

runtime/autoload/phpcomplete.vim

Lines changed: 2406 additions & 5001 deletions
Large diffs are not rendered by default.

runtime/colors/delek.vim

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
" Vim color file
2-
" Maintainer: David Schweikert <dws@ee.ethz.ch>
3-
" Last Change: 2006 Apr 30
2+
" Maintainer: David Schweikert <david@schweikert.ch>
3+
" Last Change: 2014 Mar 19
44

55
hi clear
66

7-
let colors_name = "delek"
7+
let g:colors_name = "delek"
88

99
" Normal should come first
1010
hi Normal guifg=Black guibg=White
@@ -28,7 +28,11 @@ hi NonText ctermfg=Blue gui=bold guifg=gray guibg=white
2828
hi Pmenu guibg=LightBlue
2929
hi PmenuSel ctermfg=White ctermbg=DarkBlue guifg=White guibg=DarkBlue
3030
hi Question ctermfg=DarkGreen gui=bold guifg=SeaGreen
31-
hi Search ctermfg=NONE ctermbg=Yellow guibg=Yellow guifg=NONE
31+
if &background == "light"
32+
hi Search ctermfg=NONE ctermbg=Yellow guibg=Yellow guifg=NONE
33+
else
34+
hi Search ctermfg=Black ctermbg=Yellow guibg=Yellow guifg=Black
35+
endif
3236
hi SpecialKey ctermfg=DarkBlue guifg=Blue
3337
hi StatusLine cterm=bold ctermbg=blue ctermfg=yellow guibg=gold guifg=blue
3438
hi StatusLineNC cterm=bold ctermbg=blue ctermfg=black guibg=gold guifg=blue

runtime/colors/industry.vim

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
" Vim color file
2+
" Maintainer: Shian Lee
3+
" Last Change: 2014 Mar 6 (for vim 7.4)
4+
" Remark: "industry" stands for 'industrial' color scheme. In industrial
5+
" HMI (Human-Machine-Interface) programming, using a standard color
6+
" scheme is mandatory in many cases (in traffic-lights for example):
7+
" LIGHT_RED is 'Warning'
8+
" LIGHT_YELLOW is 'Attention'
9+
" LIGHT_GREEN is 'Normal'
10+
" LIGHT_MAGENTA is 'Warning-Attention' (light RED-YELLOW)
11+
" LIGHT_CYAN is 'Attention-Normal' (light YELLOW-GREEN).
12+
" BLACK is Dark-High-Contrast Background for maximum safety.
13+
" BLUE is Shade of BLACK (not supposed to get attention).
14+
"
15+
" Industrial color scheme is by nature clear, safe and productive.
16+
" Yet, depends on the file type's syntax, it might appear incorrect.
17+
18+
" Reset to dark background, then reset everything to defaults:
19+
set background=dark
20+
highlight clear
21+
if exists("syntax_on")
22+
syntax reset
23+
endif
24+
25+
let colors_name = "industry"
26+
27+
" First set Normal to regular white on black text colors:
28+
hi Normal ctermfg=LightGray ctermbg=Black guifg=#dddddd guibg=Black
29+
30+
" Syntax highlighting (other color-groups using default, see :help group-name):
31+
hi Comment cterm=NONE ctermfg=DarkCyan gui=NONE guifg=#00aaaa
32+
hi Constant cterm=NONE ctermfg=LightCyan gui=NONE guifg=#00ffff
33+
hi Identifier cterm=NONE ctermfg=LightMagenta gui=NONE guifg=#ff00ff
34+
hi Function cterm=NONE ctermfg=LightGreen gui=NONE guifg=#00ff00
35+
hi Statement cterm=NONE ctermfg=White gui=bold guifg=#ffffff
36+
hi PreProc cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
37+
hi Type cterm=NONE ctermfg=LightGreen gui=bold guifg=#00ff00
38+
hi Special cterm=NONE ctermfg=LightRed gui=NONE guifg=#ff0000
39+
hi Delimiter cterm=NONE ctermfg=Yellow gui=NONE guifg=#ffff00
40+

runtime/doc/eval.txt

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*eval.txt* For Vim version 7.4. Last change: 2014 Feb 11
1+
*eval.txt* For Vim version 7.4. Last change: 2014 Mar 22
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -2815,7 +2815,7 @@ expand({expr} [, {nosuf} [, {list}]]) *expand()*
28152815
<afile> autocmd file name
28162816
<abuf> autocmd buffer number (as a String!)
28172817
<amatch> autocmd matched name
2818-
<sfile> sourced script file name
2818+
<sfile> sourced script file or function name
28192819
<slnum> sourced script file line number
28202820
<cword> word under the cursor
28212821
<cWORD> WORD under the cursor
@@ -6624,7 +6624,8 @@ See |:verbose-cmd| for more information.
66246624
:fu[nction][!] {name}([arguments]) [range] [abort] [dict]
66256625
Define a new function by the name {name}. The name
66266626
must be made of alphanumeric characters and '_', and
6627-
must start with a capital or "s:" (see above).
6627+
must start with a capital or "s:" (see above). When
6628+
using a capital "g:" be prepended.
66286629

66296630
{name} can also be a |Dictionary| entry that is a
66306631
|Funcref|: >
@@ -7463,10 +7464,11 @@ This does NOT work: >
74637464
:execute "!ls " . shellescape(filename, 1)
74647465
<
74657466
Note: The executed string may be any command-line, but
7466-
you cannot start or end a "while", "for" or "if"
7467-
command. Thus this is illegal: >
7467+
you cannot start or end a "while" or "for" command.
7468+
Thus this is illegal: >
74687469
:execute 'while i > 5'
74697470
:execute 'echo "test" | break'
7471+
:endwhile
74707472
<
74717473
It is allowed to have a "while" or "if" command
74727474
completely in the executed string: >

runtime/doc/index.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*index.txt* For Vim version 7.4. Last change: 2013 Nov 14
1+
*index.txt* For Vim version 7.4. Last change: 2014 Mar 22
22

33

44
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -1124,8 +1124,8 @@ tag command action ~
11241124
|:cNfile| :cNf[ile] go to last error in previous file
11251125
|:cabbrev| :ca[bbrev] like ":abbreviate" but for Command-line mode
11261126
|:cabclear| :cabc[lear] clear all abbreviations for Command-line mode
1127-
|:caddbuffer| :caddb[uffer] add errors from buffer
1128-
|:caddexpr| :cad[dexpr] add errors from expr
1127+
|:caddbuffer| :cad[dbuffer] add errors from buffer
1128+
|:caddexpr| :cadde[xpr] add errors from expr
11291129
|:caddfile| :caddf[ile] add error message to current quickfix list
11301130
|:call| :cal[l] call a function
11311131
|:catch| :cat[ch] part of a :try command

runtime/doc/os_vms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*os_vms.txt* For Vim version 7.4. Last change: 2013 Aug 22
1+
*os_vms.txt* For Vim version 7.4. Last change: 2014 Feb 24
22

33

44
VIM REFERENCE MANUAL

0 commit comments

Comments
 (0)