~ubuntu-branches/ubuntu/maverick/vim/maverick

« back to all changes in this revision

Viewing changes to src/vim.h

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2009-01-13 18:39:18 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20090113183918-kgq1jzdwsbbex4pq
Tags: 2:7.2.079-1ubuntu1
* Resynchronise with Debian (diversions fix closes LP: #296324). Remaining
  changes:
  - runtime/syntax/debcontrol.vim:
    + Add "metapackages" to the list of valid sections.
  - runtime/syntax/debchangelog.vim:
    + Add "jaunty" to the list of valid suites.
  - Drop vim-lesstif package and lesstif2-dev build-dependency.
  - Enable Python interpreter on basic builds.
  - Create a .pot file for translations.
  - Disable autoindent, line-wrapping, and backup files by default.
  - runtime/syntax/debsources.vim:
    + Add "jaunty" to debsourcesDistrKeyword
  - runtime/syntax/grub.vim:
    + Add Ubuntu-specific 'quiet' keyword.

Show diffs side-by-side

added added

removed removed

Lines of Context:
341
341
#ifdef BACKSLASH_IN_FILENAME
342
342
# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`%#'\"|!<")
343
343
#else
344
 
# define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<")
345
 
# define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&")
 
344
# ifdef VMS
 
345
    /* VMS allows a lot of characters in the file name */
 
346
#  define PATH_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'\"|!")
 
347
#  define SHELL_ESC_CHARS ((char_u *)" \t\n*?{`\\%#'|!()&")
 
348
# else
 
349
#  define PATH_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<")
 
350
#  define SHELL_ESC_CHARS ((char_u *)" \t\n*?[{`$\\%#'\"|!<>();&")
 
351
# endif
346
352
#endif
347
353
 
348
354
#define NUMBUFLEN 30        /* length of a buffer to store a number in ASCII */
370
376
   * Define __w64 as an empty token for everything but MSVC 7.x or later.
371
377
   */
372
378
# if !defined(_MSC_VER) || (_MSC_VER < 1300)
373
 
#  define __w64 
 
379
#  define __w64
374
380
# endif
375
381
typedef unsigned long __w64     long_u;
376
382
typedef          long __w64     long_i;
1728
1734
#define VV_MOUSE_COL    51
1729
1735
#define VV_OP           52
1730
1736
#define VV_SEARCHFORWARD 53
1731
 
#define VV_LEN          54      /* number of v: vars */
 
1737
#define VV_OLDFILES     54
 
1738
#define VV_LEN          55      /* number of v: vars */
1732
1739
 
1733
1740
#ifdef FEAT_CLIPBOARD
1734
1741
 
1979
1986
# endif
1980
1987
#endif
1981
1988
 
 
1989
#ifndef FEAT_NETBEANS_INTG
 
1990
# undef NBDEBUG
 
1991
#endif
1982
1992
#ifdef NBDEBUG /* Netbeans debugging. */
1983
1993
# include "nbdebug.h"
1984
1994
#else
2054
2064
#define DOSO_VIMRC      1       /* loading vimrc file */
2055
2065
#define DOSO_GVIMRC     2       /* loading gvimrc file */
2056
2066
 
 
2067
/* flags for read_viminfo() and children */
 
2068
#define VIF_WANT_INFO           1       /* load non-mark info */
 
2069
#define VIF_WANT_MARKS          2       /* load file marks */
 
2070
#define VIF_FORCEIT             4       /* overwrite info already read */
 
2071
#define VIF_GET_OLDFILES        8       /* load v:oldfiles */
 
2072
 
2057
2073
#endif /* VIM__H */