summaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-02-21 19:55:14 +0000
committerBram Moolenaar <Bram@vim.org>2023-02-21 19:55:14 +0000
commit99a7c0d89cf77c0a908b60191e63f41f04f9e793 (patch)
treef69745ee2fa5641b0934326c92cdd6920df59e56 /src/vim.h
parentcfce5cf542db20c7beba5b4211c0ae3305a64a43 (diff)
downloadvim-git-99a7c0d89cf77c0a908b60191e63f41f04f9e793.tar.gz
patch 9.0.1338: :defcompile and :disassemble can't find class methodv9.0.1338
Problem: :defcompile and :disassemble can't find class method. (Ernie Rael) Solution: Make a class name and class.method name work. (closes #11984)
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vim.h b/src/vim.h
index d1ec26c50..5193d598f 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -2722,6 +2722,7 @@ typedef char *(*opt_did_set_cb_T)(optset_T *args);
#define GLV_NO_DECL TFN_NO_DECL // assignment without :var or :let
#define GLV_COMPILING TFN_COMPILING // variable may be defined later
#define GLV_ASSIGN_WITH_OP TFN_ASSIGN_WITH_OP // assignment with operator
+#define GLV_PREFER_FUNC 0x10000 // prefer function above variable
#define DO_NOT_FREE_CNT 99999 // refcount for dict or list that should not
// be freed.