aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/arglist.h
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-08-16 14:16:03 +0800
committerGitHub <noreply@github.com>2022-08-16 14:16:03 +0800
commit5e98a41872bafc781a75925e0de28c8c7a60889d (patch)
treefdb727a69c812c29430ef2ccc69a7ea092995296 /src/nvim/arglist.h
parentd5d6ed311b001c8e11dc8d69f9be421d6a7e286e (diff)
downloadrneovim-5e98a41872bafc781a75925e0de28c8c7a60889d.tar.gz
rneovim-5e98a41872bafc781a75925e0de28c8c7a60889d.tar.bz2
rneovim-5e98a41872bafc781a75925e0de28c8c7a60889d.zip
vim-patch:8.1.1869: code for the argument list is spread out (#19791)
Problem: Code for the argument list is spread out. Solution: Put argument list code in arglist.c. (Yegappan Lakshmanan, closes vim/vim#4819) https://github.com/vim/vim/commit/4ad62155a1015751a6645aaecd94b02c94c8934b
Diffstat (limited to 'src/nvim/arglist.h')
-rw-r--r--src/nvim/arglist.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/nvim/arglist.h b/src/nvim/arglist.h
new file mode 100644
index 0000000000..b2e0f411d4
--- /dev/null
+++ b/src/nvim/arglist.h
@@ -0,0 +1,11 @@
+#ifndef NVIM_ARGLIST_H
+#define NVIM_ARGLIST_H
+
+#include "nvim/eval/typval.h"
+#include "nvim/ex_cmds_defs.h"
+
+#ifdef INCLUDE_GENERATED_DECLARATIONS
+# include "arglist.h.generated.h"
+#endif
+
+#endif // NVIM_ARGLIST_H