comparison src/vim.h @ 2268:aafed4a4866f vim73

Command line completion for :ownsyntax. (Dominique Pelle)
author Bram Moolenaar <bram@vim.org>
date Mon, 21 Jun 2010 06:24:34 +0200
parents 1bac28a53fae
children 543ea69d037f
comparison
equal deleted inserted replaced
2267:c08f91142c41 2268:aafed4a4866f
767 #define EXPAND_SHELLCMD 32 767 #define EXPAND_SHELLCMD 32
768 #define EXPAND_CSCOPE 33 768 #define EXPAND_CSCOPE 33
769 #define EXPAND_SIGN 34 769 #define EXPAND_SIGN 34
770 #define EXPAND_PROFILE 35 770 #define EXPAND_PROFILE 35
771 #define EXPAND_BEHAVE 36 771 #define EXPAND_BEHAVE 36
772 #define EXPAND_FILETYPE 37
772 773
773 /* Values for exmode_active (0 is no exmode) */ 774 /* Values for exmode_active (0 is no exmode) */
774 #define EXMODE_NORMAL 1 775 #define EXMODE_NORMAL 1
775 #define EXMODE_VIM 2 776 #define EXMODE_VIM 2
776 777
1554 1555
1555 #define MAXLNUM (0x7fffffffL) /* maximum (invalid) line number */ 1556 #define MAXLNUM (0x7fffffffL) /* maximum (invalid) line number */
1556 1557
1557 /* 1558 /*
1558 * Well, you won't believe it, but some S/390 machines ("host", now also known 1559 * Well, you won't believe it, but some S/390 machines ("host", now also known
1559 * as zServer) us 31 bit pointers. There are also some newer machines, that 1560 * as zServer) use 31 bit pointers. There are also some newer machines, that
1560 * use 64 bit pointers. I don't know how to distinguish between 31 and 64 bit 1561 * use 64 bit pointers. I don't know how to distinguish between 31 and 64 bit
1561 * machines, so the best way is to assume 31 bits whenever we detect OS/390 1562 * machines, so the best way is to assume 31 bits whenever we detect OS/390
1562 * Unix. 1563 * Unix.
1563 * With this we restrict the maximum line length to 1073741823. I guess this is 1564 * With this we restrict the maximum line length to 1073741823. I guess this is
1564 * not a real problem. BTW: Longer lines are split. 1565 * not a real problem. BTW: Longer lines are split.