aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2020-04-26 20:01:58 -0700
committerJustin M. Keyes <justinkz@gmail.com>2020-04-26 20:01:58 -0700
commit6b050a145dcd2836512cdb8e5239cd2b656267b9 (patch)
tree71ca90a6d21f03857b499ec37e779ff74e76b422 /src/nvim/vim.h
parent05a07ff7afd4e5ffd5be0a0e14338a23af6044f3 (diff)
parent0eadbd4ac23604356bea84e5167e92b781928812 (diff)
downloadrneovim-6b050a145dcd2836512cdb8e5239cd2b656267b9.tar.gz
rneovim-6b050a145dcd2836512cdb8e5239cd2b656267b9.tar.bz2
rneovim-6b050a145dcd2836512cdb8e5239cd2b656267b9.zip
Merge #11851 'eval.c: factor out eval/userfunc.c'
vim-patch:7.4.2058
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 51f143a3d7..c1eea1ab90 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -248,6 +248,9 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext()
# define vim_strpbrk(s, cs) (char_u *)strpbrk((char *)(s), (char *)(cs))
+// Character used as separated in autoload function/variable names.
+#define AUTOLOAD_CHAR '#'
+
#include "nvim/message.h"
// Prefer using emsgf(), because perror() may send the output to the wrong
@@ -257,6 +260,8 @@ enum { FOLD_TEXT_LEN = 51 }; //!< buffer size for get_foldtext()
#define SHOWCMD_COLS 10 // columns needed by shown command
#define STL_MAX_ITEM 80 // max nr of %<flag> in statusline
+#include "nvim/path.h"
+
/// Compare file names
///
/// On some systems case in a file name does not matter, on others it does.