Skip to content
Snippets Groups Projects
Commit 00a927d6 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

Updated runtime files.

parent f1eeae94
No related branches found
No related tags found
No related merge requests found
Showing
with 157 additions and 809 deletions
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
if &cp || exists("g:loaded_netrwPlugin") if &cp || exists("g:loaded_netrwPlugin")
finish finish
endif endif
let g:loaded_netrwPlugin = "v136" let g:loaded_netrwPlugin = "v138"
if v:version < 702 if v:version < 702
echohl WarningMsg | echo "***netrw*** you need vim version 7.2 for this version of netrw" | echohl None echohl WarningMsg | echo "***netrw*** you need vim version 7.2 for this version of netrw" | echohl None
finish finish
...@@ -35,6 +35,7 @@ set cpo&vim ...@@ -35,6 +35,7 @@ set cpo&vim
augroup FileExplorer augroup FileExplorer
au! au!
au BufEnter * silent! call s:LocalBrowse(expand("<amatch>")) au BufEnter * silent! call s:LocalBrowse(expand("<amatch>"))
au VimEnter * silent! call s:VimEnter(expand("<amatch>"))
if has("win32") || has("win95") || has("win64") || has("win16") if has("win32") || has("win95") || has("win64") || has("win16")
au BufEnter .* silent! call s:LocalBrowse(expand("<amatch>")) au BufEnter .* silent! call s:LocalBrowse(expand("<amatch>"))
endif endif
...@@ -108,6 +109,13 @@ fun! s:LocalBrowse(dirname) ...@@ -108,6 +109,13 @@ fun! s:LocalBrowse(dirname)
" not a directory, ignore it " not a directory, ignore it
endfun endfun
" ---------------------------------------------------------------------
" s:VimEnter: {{{2
fun! s:VimEnter(dirname)
windo if a:dirname != expand("%")|call s:LocalBrowse(expand("%:p"))|endif
1wincmd w
endfun
" --------------------------------------------------------------------- " ---------------------------------------------------------------------
" NetrwStatusLine: {{{1 " NetrwStatusLine: {{{1
fun! NetrwStatusLine() fun! NetrwStatusLine()
......
" vimballPlugin : construct a file containing both paths and files " vimballPlugin : construct a file containing both paths and files
" Author: Charles E. Campbell, Jr. " Author: Charles E. Campbell, Jr.
" Copyright: (c) 2004-2009 by Charles E. Campbell, Jr. " Copyright: (c) 2004-2010 by Charles E. Campbell, Jr.
" The VIM LICENSE applies to Vimball.vim, and Vimball.txt " The VIM LICENSE applies to Vimball.vim, and Vimball.txt
" (see |copyright|) except use "Vimball" instead of "Vim". " (see |copyright|) except use "Vimball" instead of "Vim".
" No warranty, express or implied. " No warranty, express or implied.
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
if &cp || exists("g:loaded_vimballPlugin") if &cp || exists("g:loaded_vimballPlugin")
finish finish
endif endif
let g:loaded_vimballPlugin = "v30" let g:loaded_vimballPlugin = "v31"
let s:keepcpo = &cpo let s:keepcpo = &cpo
set cpo&vim set cpo&vim
...@@ -27,7 +27,7 @@ com! -na=? -complete=dir UseVimball call vimball#Vimball(1,<f-args>) ...@@ -27,7 +27,7 @@ com! -na=? -complete=dir UseVimball call vimball#Vimball(1,<f-args>)
com! -na=0 VimballList call vimball#Vimball(0) com! -na=0 VimballList call vimball#Vimball(0)
com! -na=* -complete=dir RmVimball call vimball#SaveSettings()|call vimball#RmVimball(<f-args>)|call vimball#RestoreSettings() com! -na=* -complete=dir RmVimball call vimball#SaveSettings()|call vimball#RmVimball(<f-args>)|call vimball#RestoreSettings()
au SourceCmd *.vba.gz,*.vba.bz2,*.vba.zip call vimball#Decompress(expand("<amatch>"))|call vimball#Vimball(1) au SourceCmd *.vba.gz,*.vba.bz2,*.vba.zip call vimball#Decompress(expand("<amatch>"))|call vimball#Vimball(1)
au BufEnter *.vba,*.vba.gz,*.vba.bz2,*.vba.zip setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'| setlocal ff=unix|endif|call vimball#ShowMesg(0,"Source this file to extract it! (:so %)") au BufEnter *.vba,*.vba.gz,*.vba.bz2,*.vba.zip setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'| setlocal ma ff=unix noma |endif|call vimball#ShowMesg(0,"Source this file to extract it! (:so %)")
" ===================================================================== " =====================================================================
" Restoration And Modelines: {{{1 " Restoration And Modelines: {{{1
......
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
if &cp || exists("g:loaded_zipPlugin") if &cp || exists("g:loaded_zipPlugin")
finish finish
endif endif
let g:loaded_zipPlugin = "v22" let g:loaded_zipPlugin = "v23"
let s:keepcpo = &cpo let s:keepcpo = &cpo
set cpo&vim set cpo&vim
......
...@@ -34,9 +34,9 @@ bg_BG.aff bg_BG.dic: {buildcheck=} ...@@ -34,9 +34,9 @@ bg_BG.aff bg_BG.dic: {buildcheck=}
:fetch bg_BG.zip :fetch bg_BG.zip
:sys $UNZIP bg_BG.zip :sys $UNZIP bg_BG.zip
:delete bg_BG.zip :delete bg_BG.zip
:sys $VIM bg_BG.aff -e -c "set ff=unix" -c update -c q :sys $VIM bg_BG.aff -u NONE -e -c "set ff=unix" -c update -c q
:sys $VIM bg_BG.dic -e -c "set ff=unix" -c update -c q :sys $VIM bg_BG.dic -u NONE -e -c "set ff=unix" -c update -c q
:sys $VIM README_bg_BG.txt -e -c "set ff=unix" -c update -c q :sys $VIM README_bg_BG.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('bg_BG.orig.aff'): @if not os.path.exists('bg_BG.orig.aff'):
:copy bg_BG.aff bg_BG.orig.aff :copy bg_BG.aff bg_BG.orig.aff
@if not os.path.exists('bg_BG.orig.dic'): @if not os.path.exists('bg_BG.orig.dic'):
......
*** br_FR.orig.aff 2010-04-14 18:44:36.365731271 +0200
--- br_FR.aff 2010-04-14 18:43:31.069137439 +0200
***************
*** 9,14 ****
--- 9,16 ----
SET UTF-8
TRY esiaùnñrtolcdugmphbyfvkwzESIAÙNÑRTOLCDUGMPHBYFVKWZ'
+ MIDWORD '
+
PFX m Y 1
PFX m 0 m' [aehiouy]
This diff is collapsed.
...@@ -36,8 +36,8 @@ ca_ES.aff ca_ES.dic: {buildcheck=} ...@@ -36,8 +36,8 @@ ca_ES.aff ca_ES.dic: {buildcheck=}
:fetch ca_ES.zip :fetch ca_ES.zip
:sys $UNZIP ca_ES.zip :sys $UNZIP ca_ES.zip
:delete ca_ES.zip :delete ca_ES.zip
:sys $VIM ca_ES.aff -c "set ff=unix" -c "update" -c q :sys $VIM ca_ES.aff -u NONE -c "set ff=unix" -c "update" -c q
:sys $VIM ca_ES.dic -c "set ff=unix" -c "update" -c q :sys $VIM ca_ES.dic -u NONE -c "set ff=unix" -c "update" -c q
@if not os.path.exists('ca_ES.orig.aff'): @if not os.path.exists('ca_ES.orig.aff'):
:copy ca_ES.aff ca_ES.orig.aff :copy ca_ES.aff ca_ES.orig.aff
@if not os.path.exists('ca_ES.orig.dic'): @if not os.path.exists('ca_ES.orig.dic'):
......
...@@ -36,9 +36,9 @@ cy_GB.aff cy_GB.dic: {buildcheck=} ...@@ -36,9 +36,9 @@ cy_GB.aff cy_GB.dic: {buildcheck=}
:fetch cy_GB.zip :fetch cy_GB.zip
:sys $UNZIP cy_GB.zip :sys $UNZIP cy_GB.zip
:delete cy_GB.zip :delete cy_GB.zip
:sys $VIM cy_GB.aff -e -c "set ff=unix" -c update -c q :sys $VIM cy_GB.aff -u NONE -e -c "set ff=unix" -c update -c q
:sys $VIM cy_GB.dic -e -c "set ff=unix" -c update -c q :sys $VIM cy_GB.dic -u NONE -e -c "set ff=unix" -c update -c q
:sys $VIM README_cy_GB.txt -e -c "set ff=unix" -c update -c q :sys $VIM README_cy_GB.txt -u NONE -e -c "set ff=unix" -c update -c q
@if not os.path.exists('cy_GB.orig.aff'): @if not os.path.exists('cy_GB.orig.aff'):
:copy cy_GB.aff cy_GB.orig.aff :copy cy_GB.aff cy_GB.orig.aff
@if not os.path.exists('cy_GB.orig.dic'): @if not os.path.exists('cy_GB.orig.dic'):
......
This diff is collapsed.
...@@ -22,7 +22,7 @@ $SPELLDIR/eo.utf-8.spl : $FILES ...@@ -22,7 +22,7 @@ $SPELLDIR/eo.utf-8.spl : $FILES
../README_eo.txt : README_eo_l3.txt ../README_eo.txt : README_eo_l3.txt
:copy $source $target :copy $source $target
# fix missing newline # fix missing newline
:sys $VIM $target -e -c "set ff=unix" -c wq :sys $VIM -u NONE -e -c "set ff=unix" -c wq $target
# #
# Fetching the files from OpenOffice.org. # Fetching the files from OpenOffice.org.
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment