summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-04-24 14:07:45 +0200
committerBram Moolenaar <Bram@vim.org>2013-04-24 14:07:45 +0200
commit230bb3f09d1661cb8da3ef64406270bd3e61aae3 (patch)
tree9c493ef3d30ffc39af2a540fa14bd64b563351b3 /src/globals.h
parent335e0b69744ededb907fb9167f72ac84e37e1304 (diff)
updated for version 7.3.911v7.3.911
Problem: Python: Access to Vim variables is not so easy. Solution: Define vim.vars and vim.vvars. (ZyX)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index ac0eb18e06..1e966cfec3 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -180,6 +180,8 @@ EXTERN int emsg_skip INIT(= 0); /* don't display errors for
EXTERN int emsg_severe INIT(= FALSE); /* use message of next of several
emsg() calls for throw */
EXTERN int did_endif INIT(= FALSE); /* just had ":endif" */
+EXTERN dict_T vimvardict; /* Dictionary with v: variables */
+EXTERN dict_T globvardict; /* Dictionary with g: variables */
#endif
EXTERN int did_emsg; /* set by emsg() when the message
is displayed or thrown */