- needed to modify this patch as it collides with the runtime-update patch
This commit is contained in:
parent
6329cae978
commit
22de7395fa
90
7.0.187
90
7.0.187
@ -1,3 +1,5 @@
|
||||
# KH: Modified as it collides with the runtime-update patch
|
||||
|
||||
To: vim-dev@vim.org
|
||||
Subject: patch 7.0.187
|
||||
Fcc: outbox
|
||||
@ -12,23 +14,16 @@ Problem: Can't source a remote script properly.
|
||||
Solution: Add the SourceCmd event. (Charles Campbell)
|
||||
Files: runtime/doc/autocmd.txt, src/ex_cmds2.c, src/fileio.c, src/vim.h
|
||||
|
||||
|
||||
*** ../vim-7.0.186/runtime/doc/autocmd.txt Sun May 7 17:07:33 2006
|
||||
--- runtime/doc/autocmd.txt Tue Jan 16 21:29:14 2007
|
||||
***************
|
||||
*** 1,4 ****
|
||||
! *autocmd.txt* For Vim version 7.0. Last change: 2006 May 06
|
||||
diff -urN runtime/doc/autocmd.txt runtime/doc/autocmd.txt.new
|
||||
--- runtime/doc/autocmd.txt 2006-09-08 17:26:31.000000000 -0400
|
||||
+++ runtime/doc/autocmd.txt 2007-01-23 06:17:46.000000000 -0500
|
||||
@@ -1,4 +1,4 @@
|
||||
-*autocmd.txt* For Vim version 7.0. Last change: 2006 Aug 29
|
||||
+*autocmd.txt* For Vim version 7.0. Last change: 2007 Jan 16
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
--- 1,4 ----
|
||||
! *autocmd.txt* For Vim version 7.0. Last change: 2007 Jan 16
|
||||
|
||||
|
||||
VIM REFERENCE MANUAL by Bram Moolenaar
|
||||
***************
|
||||
*** 279,284 ****
|
||||
--- 279,285 ----
|
||||
@@ -279,6 +279,7 @@
|
||||
|FuncUndefined| a user function is used but it isn't defined
|
||||
|SpellFileMissing| a spell file is used but it can't be found
|
||||
|SourcePre| before sourcing a Vim script
|
||||
@ -36,23 +31,10 @@ Files: runtime/doc/autocmd.txt, src/ex_cmds2.c, src/fileio.c, src/vim.h
|
||||
|
||||
|VimResized| after the Vim window size changed
|
||||
|FocusGained| Vim got input focus
|
||||
***************
|
||||
*** 690,699 ****
|
||||
Can be used to check for any changed files.
|
||||
@@ -695,10 +696,16 @@
|
||||
*SourcePre*
|
||||
SourcePre Before sourcing a Vim script. |:source|
|
||||
*SpellFileMissing*
|
||||
SpellFileMissing When trying to load a spell checking file and
|
||||
! it can't be found. <amatch> is the language,
|
||||
! 'encoding' also matters. See
|
||||
|spell-SpellFileMissing|.
|
||||
*StdinReadPost*
|
||||
StdinReadPost After reading from the stdin into the buffer,
|
||||
--- 701,717 ----
|
||||
Can be used to check for any changed files.
|
||||
*SourcePre*
|
||||
SourcePre Before sourcing a Vim script. |:source|
|
||||
+ <afile> is the name of the file being sourced.
|
||||
<afile> is the name of the file being sourced.
|
||||
+ *SourceCmd*
|
||||
+SourceCmd When sourcing a Vim script. |:source|
|
||||
+ <afile> is the name of the file being sourced.
|
||||
@ -60,50 +42,36 @@ Files: runtime/doc/autocmd.txt, src/ex_cmds2.c, src/fileio.c, src/vim.h
|
||||
+ |Cmd-event|
|
||||
*SpellFileMissing*
|
||||
SpellFileMissing When trying to load a spell checking file and
|
||||
! it can't be found. The pattern is matched
|
||||
! against the language. <amatch> is the
|
||||
! language, 'encoding' also matters. See
|
||||
- it can't be found. <amatch> is the language,
|
||||
- 'encoding' also matters. See
|
||||
+ it can't be found. The pattern is matched
|
||||
+ against the language. <amatch> is the
|
||||
+ language, 'encoding' also matters. See
|
||||
|spell-SpellFileMissing|.
|
||||
*StdinReadPost*
|
||||
StdinReadPost After reading from the stdin into the buffer,
|
||||
***************
|
||||
*** 1219,1226 ****
|
||||
@@ -1224,8 +1231,8 @@
|
||||
|
||||
*Cmd-event*
|
||||
When using one of the "*Cmd" events, the matching autocommands are expected to
|
||||
! do the file reading or writing. This can be used when working with a special
|
||||
! kind of file, for example on a remote system.
|
||||
-do the file reading or writing. This can be used when working with a special
|
||||
-kind of file, for example on a remote system.
|
||||
+do the file reading, writing or sourcing. This can be used when working with
|
||||
+a special kind of file, for example on a remote system.
|
||||
CAREFUL: If you use these events in a wrong way, it may have the effect of
|
||||
making it impossible to read or write the matching files! Make sure you test
|
||||
your autocommands properly. Best is to use a pattern that will never match a
|
||||
--- 1238,1245 ----
|
||||
|
||||
*Cmd-event*
|
||||
When using one of the "*Cmd" events, the matching autocommands are expected to
|
||||
! do the file reading, writing or sourcing. This can be used when working with
|
||||
! a special kind of file, for example on a remote system.
|
||||
CAREFUL: If you use these events in a wrong way, it may have the effect of
|
||||
making it impossible to read or write the matching files! Make sure you test
|
||||
your autocommands properly. Best is to use a pattern that will never match a
|
||||
***************
|
||||
*** 1233,1241 ****
|
||||
@@ -1238,9 +1245,10 @@
|
||||
original file isn't needed for recovery. You might want to do this only when
|
||||
you expect the file to be modified.
|
||||
|
||||
! The |v:cmdarg| variable holds the "++enc=" and "++ff=" argument that are
|
||||
! effective. These should be used for the command that reads/writes the file.
|
||||
! The |v:cmdbang| variable is one when "!" was used, zero otherwise.
|
||||
|
||||
See the $VIMRUNTIME/plugin/netrw.vim for examples.
|
||||
|
||||
--- 1252,1261 ----
|
||||
original file isn't needed for recovery. You might want to do this only when
|
||||
you expect the file to be modified.
|
||||
|
||||
! For file read and write commands the |v:cmdarg| variable holds the "++enc="
|
||||
! and "++ff=" argument that are effective. These should be used for the command
|
||||
! that reads/writes the file. The |v:cmdbang| variable is one when "!" was
|
||||
! used, zero otherwise.
|
||||
-The |v:cmdarg| variable holds the "++enc=" and "++ff=" argument that are
|
||||
-effective. These should be used for the command that reads/writes the file.
|
||||
-The |v:cmdbang| variable is one when "!" was used, zero otherwise.
|
||||
+For file read and write commands the |v:cmdarg| variable holds the "++enc="
|
||||
+and "++ff=" argument that are effective. These should be used for the command
|
||||
+that reads/writes the file. The |v:cmdbang| variable is one when "!" was
|
||||
+used, zero otherwise.
|
||||
|
||||
See the $VIMRUNTIME/plugin/netrw.vim for examples.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user