1
0
forked from aniani/vim

updated for version 7.1b

This commit is contained in:
Bram Moolenaar
2007-05-10 17:44:18 +00:00
parent 044b68f42a
commit 3d27a45f9a
11 changed files with 19 additions and 14 deletions

View File

@@ -1,4 +1,4 @@
*gui_w16.txt* For Vim version 7.1a. Last change: 2005 Mar 29 *gui_w16.txt* For Vim version 7.1b. Last change: 2005 Mar 29
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@@ -1,4 +1,4 @@
*os_unix.txt* For Vim version 7.1a. Last change: 2005 Mar 29 *os_unix.txt* For Vim version 7.1b. Last change: 2005 Mar 29
VIM REFERENCE MANUAL by Bram Moolenaar VIM REFERENCE MANUAL by Bram Moolenaar

View File

@@ -1,4 +1,4 @@
*usr_41.txt* For Vim version 7.1a. Last change: 2007 Apr 26 *usr_41.txt* For Vim version 7.1b. Last change: 2007 Apr 26
VIM USER MANUAL - by Bram Moolenaar VIM USER MANUAL - by Bram Moolenaar

View File

@@ -1,4 +1,4 @@
*usr_90.txt* For Vim version 7.1a. Last change: 2006 Apr 24 *usr_90.txt* For Vim version 7.1b. Last change: 2006 Apr 24
VIM USER MANUAL - by Bram Moolenaar VIM USER MANUAL - by Bram Moolenaar

View File

@@ -1,7 +1,7 @@
" Vim indent file " Vim indent file
" Language: dictd(8) configuration file " Language: dictd(8) configuration file
" Maintainer: Nikolai Weibull <now@bitwi.se> " Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 2006-04-19 " Latest Revision: 2006-12-20
if exists("b:did_indent") if exists("b:did_indent")
finish finish
@@ -9,4 +9,5 @@ endif
let b:did_indent = 1 let b:did_indent = 1
setlocal indentkeys=0{,0},!^F,o,O cinwords= autoindent smartindent setlocal indentkeys=0{,0},!^F,o,O cinwords= autoindent smartindent
setlocal nosmartindent
inoremap <buffer> # X# inoremap <buffer> # X#

View File

@@ -1,7 +1,7 @@
" Vim default file " Vim default file
" Language: Racc input file " Language: Racc input file
" Maintainer: Nikolai Weibull <now@bitwi.se> " Maintainer: Nikolai Weibull <now@bitwi.se>
" Latest Revision: 2006-04-19 " Latest Revision: 2006-07-09
if exists("b:current_syntax") if exists("b:current_syntax")
finish finish
@@ -110,6 +110,10 @@ syn region raccFooter transparent matchgroup=raccPreProc
\ start='^---- footer.*' end='^----'he=e-4 \ start='^---- footer.*' end='^----'he=e-4
\ contains=@raccRuby \ contains=@raccRuby
syn sync match raccSyncHeader grouphere raccHeader '^---- header'
syn sync match raccSyncInner grouphere raccInner '^---- inner'
syn sync match raccSyncFooter grouphere raccFooter '^---- footer'
hi def link raccTodo Todo hi def link raccTodo Todo
hi def link raccComment Comment hi def link raccComment Comment
hi def link raccPrecSpec Type hi def link raccPrecSpec Type

View File

@@ -93,7 +93,7 @@ STDMETHODIMP CDSAddIn::OnDisconnection (VARIANT_BOOL bLastTime)
// Add a command to DevStudio // Add a command to DevStudio
// Creates a toolbar button for the command also. // Creates a toolbar button for the command also.
// 'MethodName' is the name of the methode specified in the .odl file // 'MethodName' is the name of the method specified in the .odl file
// 'StrResId' the resource id of the descriptive string // 'StrResId' the resource id of the descriptive string
// 'GlyphIndex' the image index into the command buttons bitmap // 'GlyphIndex' the image index into the command buttons bitmap
// Return true on success // Return true on success

View File

@@ -1096,7 +1096,7 @@
/* /*
* +termresponse send t_RV to obtain terminal response. Used for xterm * +termresponse send t_RV to obtain terminal response. Used for xterm
* to check if mouse dragging can be used and if term * to check if mouse dragging can be used and if term
* codes can be obtaind. * codes can be obtained.
*/ */
#if (defined(FEAT_NORMAL) || defined(FEAT_MOUSE)) && defined(HAVE_TGETENT) #if (defined(FEAT_NORMAL) || defined(FEAT_MOUSE)) && defined(HAVE_TGETENT)
# define FEAT_TERMRESPONSE # define FEAT_TERMRESPONSE
@@ -1155,7 +1155,7 @@
* +python Python interface: "--enable-pythoninterp" * +python Python interface: "--enable-pythoninterp"
* +tcl TCL interface: "--enable-tclinterp" * +tcl TCL interface: "--enable-tclinterp"
* +sniff Sniff interface: "--enable-sniff" * +sniff Sniff interface: "--enable-sniff"
* +sun_workshop Sun Workshop integegration * +sun_workshop Sun Workshop integration
* +netbeans_intg Netbeans integration * +netbeans_intg Netbeans integration
*/ */

View File

@@ -490,7 +490,7 @@ mch_total_mem(special)
/* avoid overflow as much as possible */ /* avoid overflow as much as possible */
while (shiftright > 0 && (pagesize & 1) == 0) while (shiftright > 0 && (pagesize & 1) == 0)
{ {
pagesize = pagesize >> 1; pagesize = (long_u)pagesize >> 1;
--shiftright; --shiftright;
} }
mem = (long_u)pagesize * pagecount; mem = (long_u)pagesize * pagecount;

View File

@@ -483,7 +483,7 @@ int mch_rename __ARGS((const char *src, const char *dest));
# endif # endif
# ifndef VMS # ifndef VMS
# ifdef __MVS__ # ifdef __MVS__
/* on OS390 Unix getenv() doesn't return a pointer to persistant /* on OS390 Unix getenv() doesn't return a pointer to persistent
* storage -> use __getenv() */ * storage -> use __getenv() */
# define mch_getenv(x) (char_u *)__getenv((char *)(x)) # define mch_getenv(x) (char_u *)__getenv((char *)(x))
# else # else

View File

@@ -383,7 +383,7 @@ do_tag(tag, type, count, forceit, verbose)
/* /*
* Beyond the last one, just give an error message and * Beyond the last one, just give an error message and
* go to the last one. Don't store the cursor * go to the last one. Don't store the cursor
* postition. * position.
*/ */
tagstackidx = tagstacklen - 1; tagstackidx = tagstacklen - 1;
EMSG(_(topmsg)); EMSG(_(topmsg));
@@ -1330,7 +1330,7 @@ find_tags(pat, num_matches, matchesp, flags, mincount, buf_ffname)
} incstack[INCSTACK_SIZE]; } incstack[INCSTACK_SIZE];
int incstack_idx = 0; /* index in incstack */ int incstack_idx = 0; /* index in incstack */
char_u *ebuf; /* aditional buffer for etag fname */ char_u *ebuf; /* additional buffer for etag fname */
int is_etag; /* current file is emaces style */ int is_etag; /* current file is emaces style */
#endif #endif
@@ -2812,7 +2812,7 @@ parse_tag_line(lbuf,
* *
* Static tags produced by the older ctags program have the format: * Static tags produced by the older ctags program have the format:
* 'file:tag file /pattern'. * 'file:tag file /pattern'.
* This is only recognized when both occurences of 'file' are the same, to * This is only recognized when both occurrence of 'file' are the same, to
* avoid recognizing "string::string" or ":exit". * avoid recognizing "string::string" or ":exit".
* *
* Static tags produced by the new ctags program have the format: * Static tags produced by the new ctags program have the format: