messages, shows current file name in window title, on-line
help, rectangular cut/paste, etc., etc., etc...
- Version 7.1a. Also runs under UNIX, MSDOS and other systems.
- vim71art.tgz contains the documentation and syntax files.
- vim71abin.tgz contains the binaries.
- vim71asrc.tgz contains the sources.
+ Version 7.1b. Also runs under UNIX, MSDOS and other systems.
+ vim71brt.tgz contains the documentation and syntax files.
+ vim71bbin.tgz contains the binaries.
+ vim71bsrc.tgz contains the sources.
Author: Bram Moolenaar et al.
-*howto.txt* For Vim version 7.1a. Last change: 2006 Apr 02
+*howto.txt* For Vim version 7.1b. Last change: 2006 Apr 02
VIM REFERENCE MANUAL by Bram Moolenaar
-*quickfix.txt* For Vim version 7.1a. Last change: 2007 Apr 17
+*quickfix.txt* For Vim version 7.1b. Last change: 2007 May 10
VIM REFERENCE MANUAL by Bram Moolenaar
For writing a compiler plugin, see |write-compiler-plugin|.
+GCC *quickfix-gcc* *compiler-gcc*
+
+There's one variable you can set for the GCC compiler:
+
+g:compiler_gcc_ignore_unmatched_lines
+ Ignore lines that don't match any patterns
+ defined for GCC. Useful if output from
+ commands run from make are generating false
+ positives.
+
+
MANX AZTEC C *quickfix-manx* *compiler-manx*
To use Vim with Manx's Aztec C compiler on the Amiga you should do the
" Vim indent file
-" Language: readline configuration file
+" Language: readline configuration file
" Maintainer: Nikolai Weibull <now@bitwi.se>
-" Latest Revision: 2006-04-19
+" Latest Revision: 2006-12-20
if exists("b:did_indent")
finish
setlocal indentexpr=GetReadlineIndent()
setlocal indentkeys=!^F,o,O,=$else,=$endif
+setlocal nosmartindent
if exists("*GetReadlineIndent")
finish
" Installing: :help glvs-install
" Usage: :help glvs
"
-" GetLatestVimScripts: 642 1 :AutoInstall: GetLatestVimScripts.vim
+" GetLatestVimScripts: 642 1 :AutoInstall: getscript.vim
"
" (Rom 15:11 WEB) Again, "Praise the Lord, all you Gentiles! Let
" all the peoples praise Him."
}
/*
- * Skip one (assignable) variable name, includig @r, $VAR, &option, d.key,
+ * Skip one (assignable) variable name, including @r, $VAR, &option, d.key,
* l[idx].
*/
static char_u *
/*
* Handle sixth level expression:
* number number constant
- * "string" string contstant
- * 'string' literal string contstant
+ * "string" string constant
+ * 'string' literal string constant
* &option-name option value
* @r register contents
* identifier variable value
char f_min_argc; /* minimal number of arguments */
char f_max_argc; /* maximal number of arguments */
void (*f_func) __ARGS((typval_T *args, typval_T *rvar));
- /* implemenation of function */
+ /* implementation of function */
} functions[] =
{
{"add", 2, 2, f_add},
/*
* Get the short pathname of a file.
- * Returns 1 on success. *fnamelen is 0 for nonexistant path.
+ * Returns 1 on success. *fnamelen is 0 for nonexistent path.
*/
static int
get_short_pathname(fnamep, bufp, fnamelen)
do
{
- /* Go back one path-seperator */
+ /* Go back one path-separator */
while (s > pbuf2 && !after_pathsep(pbuf2, s + 1))
{
--s;
if (s <= pbuf2)
break;
- /* Remeber the character that is about to be blatted */
+ /* Remember the character that is about to be splatted */
ch = *s;
*s = 0; /* get_short_pathname requires a null-terminated string */
if (plen > 0)
{
- /* Remeber the length of the new string. */
+ /* Remember the length of the new string. */
*fnamelen = len = plen + slen;
vim_free(*bufp);
if (len > len2)
/*
* Temporarily change the curbuf, so that we can determine whether
- * the buffer-local balloonexpr option was set insecurly.
+ * the buffer-local balloonexpr option was set insecurely.
*/
save_curbuf = curbuf;
curbuf = wp->w_buffer;
#if defined(FEAT_BEVAL_TIP) || defined(PROTO)
/*
- * Destroy a ballon-eval and free its associated memory.
+ * Destroy a balloon-eval and free its associated memory.
*/
void
gui_mch_destroy_beval_area(beval)
/*
* The real event handler. Called by pointerEventEH() whenever an event we are
- * interested in ocurrs.
+ * interested in occurs.
*/
static void
extra = 0;
check_line_range(lo, buf->buf); /* inclusive */
- check_line_range(hi - 1, buf->buf); /* exclisive */
+ check_line_range(hi - 1, buf->buf); /* exclusive */
if (SCHEME_FALSEP(line_list) || SCHEME_NULLP(line_list))
{
*
* If size of block0 changes anyway, adjust MIN_SWAP_PAGE_SIZE in vim.h!!
*
- * This block is built up of single bytes, to make it portable accros
+ * This block is built up of single bytes, to make it portable across
* different machines. b0_magic_* is used to check the byte order and size of
* variables, because the rest of the swap file is not portable.
*/
long msec;
int ignoreinput;
{
-#ifndef LATTICE /* SAS declares void Delay(UNLONG) */
+#ifndef LATTICE /* SAS declares void Delay(ULONG) */
void Delay __ARGS((long));
#endif
static long
dos_packet(pid, action, arg)
- struct MsgPort *pid; /* process indentifier ... (handlers message port) */
+ struct MsgPort *pid; /* process identifier ... (handlers message port) */
long action, /* packet type ... (what you want handler to do) */
arg; /* single argument */
{