comparison src/vim.h @ 788:b5aed52a4881

updated for version 7.0230
author vimboss
date Mon, 20 Mar 2006 21:47:49 +0000
parents fa0447b7a8a0
children 860b73800cd7
comparison
equal deleted inserted replaced
787:1a44839049ae 788:b5aed52a4881
594 #define SETWSIZE 0x400 /* window size has changed */ 594 #define SETWSIZE 0x400 /* window size has changed */
595 #define ABBREV 0x500 /* abbreviation instead of mapping */ 595 #define ABBREV 0x500 /* abbreviation instead of mapping */
596 #define EXTERNCMD 0x600 /* executing an external command */ 596 #define EXTERNCMD 0x600 /* executing an external command */
597 #define SHOWMATCH (0x700 + INSERT) /* show matching paren */ 597 #define SHOWMATCH (0x700 + INSERT) /* show matching paren */
598 #define CONFIRM 0x800 /* ":confirm" prompt */ 598 #define CONFIRM 0x800 /* ":confirm" prompt */
599 #define SELECTMODE 0x1000 /* Select mode, only for mappings */
599 600
600 /* directions */ 601 /* directions */
601 #define FORWARD 1 602 #define FORWARD 1
602 #define BACKWARD (-1) 603 #define BACKWARD (-1)
603 #define FORWARD_FILE 3 604 #define FORWARD_FILE 3
1521 1522
1522 /* Note that gui.h is included by structs.h */ 1523 /* Note that gui.h is included by structs.h */
1523 1524
1524 #include "structs.h" /* file that defines many structures */ 1525 #include "structs.h" /* file that defines many structures */
1525 1526
1527 /* Values for "do_profiling". */
1528 #define PROF_NONE 0 /* profiling not started */
1529 #define PROF_YES 1 /* profiling busy */
1530 #define PROF_PAUSED 2 /* profiling paused */
1531
1526 #ifdef FEAT_MOUSE 1532 #ifdef FEAT_MOUSE
1527 1533
1528 /* Codes for mouse button events in lower three bits: */ 1534 /* Codes for mouse button events in lower three bits: */
1529 # define MOUSE_LEFT 0x00 1535 # define MOUSE_LEFT 0x00
1530 # define MOUSE_MIDDLE 0x01 1536 # define MOUSE_MIDDLE 0x01
1972 /* behavior for bad character, "++bad=" argument */ 1978 /* behavior for bad character, "++bad=" argument */
1973 #define BAD_REPLACE '?' /* replace it with '?' (default) */ 1979 #define BAD_REPLACE '?' /* replace it with '?' (default) */
1974 #define BAD_KEEP -1 /* leave it */ 1980 #define BAD_KEEP -1 /* leave it */
1975 #define BAD_DROP -2 /* erase it */ 1981 #define BAD_DROP -2 /* erase it */
1976 1982
1983
1977 #endif /* VIM__H */ 1984 #endif /* VIM__H */