aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_docmd.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2016-06-04 11:05:05 -0400
committerJustin M. Keyes <justinkz@gmail.com>2016-06-04 11:05:05 -0400
commit02e6914a938fcca98f9062d502accb4d68a65d6e (patch)
treeb38b5515b75dcdf768fa6f65f629830f9a222c26 /src/nvim/ex_docmd.h
parent8958863e2678fd038ae089f837fa46d19574f977 (diff)
parent4e9f7684f636874e8127f0d018b32f8bc104a29f (diff)
downloadrneovim-02e6914a938fcca98f9062d502accb4d68a65d6e.tar.gz
rneovim-02e6914a938fcca98f9062d502accb4d68a65d6e.tar.bz2
rneovim-02e6914a938fcca98f9062d502accb4d68a65d6e.zip
Merge pull request #4860 from jamessan/tab-win-precedence
tcd: Determine correct scope from user input
Diffstat (limited to 'src/nvim/ex_docmd.h')
-rw-r--r--src/nvim/ex_docmd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_docmd.h b/src/nvim/ex_docmd.h
index dbfc64e2f1..bafad20169 100644
--- a/src/nvim/ex_docmd.h
+++ b/src/nvim/ex_docmd.h
@@ -26,6 +26,7 @@
/// `getcwd()`. When using scopes as limits (e.g. in loops) don't use the scopes
/// directly, use `MIN_CD_SCOPE` and `MAX_CD_SCOPE` instead.
typedef enum {
+ kCdScopeInvalid = -1,
kCdScopeWindow, ///< Affects one window.
kCdScopeTab, ///< Affects one tab page.
kCdScopeGlobal, ///< Affects the entire instance of Neovim.