diff options
author | Scott Prager <splinterofchaos@gmail.com> | 2014-09-13 14:32:32 -0400 |
---|---|---|
committer | Scott Prager <splinterofchaos@gmail.com> | 2014-09-13 18:28:32 -0400 |
commit | def28adfdd7a9ee643224e36f3f601f9f7222f46 (patch) | |
tree | 11123540c97d3eb7c4eca9bf62d1b4cd21cec3d1 /src/nvim/globals.h | |
parent | 1761a4af711410076e6fdb5f727a83ee54ff5988 (diff) | |
download | rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.tar.gz rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.tar.bz2 rneovim-def28adfdd7a9ee643224e36f3f601f9f7222f46.zip |
vim-patch:7.4.312
Problem: Cannot figure out what argument list is being used for a window.
Solution: Add the arglistid() function. (Marcin Szamotulski)
https://code.google.com/p/vim/source/detail?r=v7-4-312
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index 49a4a2f604..674786ff08 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -568,6 +568,7 @@ EXTERN int mf_dont_release INIT(= FALSE); /* don't release blocks */ * to this when the window is using the global argument list. */ EXTERN alist_T global_alist; /* global argument list */ +EXTERN int max_alist_id INIT(= 0); ///< the previous argument list id EXTERN int arg_had_last INIT(= FALSE); /* accessed last file in global_alist */ |