summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-03-20 21:47:49 +0000
committerBram Moolenaar <Bram@vim.org>2006-03-20 21:47:49 +0000
commit371d5403d0dc6411f6f17c5b472c1cfcac6789e4 (patch)
tree08066b3d097303df50e1b67fffc33d1d68bcb0d4 /src/vim.h
parentceaf7b8b66764b4a99526c715886d80397ce81dd (diff)
downloadvim-git-371d5403d0dc6411f6f17c5b472c1cfcac6789e4.tar.gz
updated for version 7.0230
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index b49b144a2..f179e9fa3 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -596,6 +596,7 @@ extern char *(*dyn_libintl_textdomain)(const char *domainname);
#define EXTERNCMD 0x600 /* executing an external command */
#define SHOWMATCH (0x700 + INSERT) /* show matching paren */
#define CONFIRM 0x800 /* ":confirm" prompt */
+#define SELECTMODE 0x1000 /* Select mode, only for mappings */
/* directions */
#define FORWARD 1
@@ -1523,6 +1524,11 @@ int vim_memcmp __ARGS((void *, void *, size_t));
#include "structs.h" /* file that defines many structures */
+/* Values for "do_profiling". */
+#define PROF_NONE 0 /* profiling not started */
+#define PROF_YES 1 /* profiling busy */
+#define PROF_PAUSED 2 /* profiling paused */
+
#ifdef FEAT_MOUSE
/* Codes for mouse button events in lower three bits: */
@@ -1974,4 +1980,5 @@ typedef int proftime_T; /* dummy for function prototypes */
#define BAD_KEEP -1 /* leave it */
#define BAD_DROP -2 /* erase it */
+
#endif /* VIM__H */