diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-05-28 08:45:02 -0500 |
---|---|---|
committer | Brandon Coleman <metrix1978@gmail.com> | 2014-06-12 01:20:36 -0500 |
commit | eade8e283e70db44cbebe72e10b600d3cf6213e8 (patch) | |
tree | a71fedd3e88c984ff42a5b402a013cf707244c5d | |
parent | 1bd6912023f10f40c34bbc977711e4b6341c3ff7 (diff) | |
download | rneovim-eade8e283e70db44cbebe72e10b600d3cf6213e8.tar.gz rneovim-eade8e283e70db44cbebe72e10b600d3cf6213e8.tar.bz2 rneovim-eade8e283e70db44cbebe72e10b600d3cf6213e8.zip |
move FINDFILE_* defines to file_search.h
-rw-r--r-- | src/nvim/file_search.h | 5 | ||||
-rw-r--r-- | src/nvim/vim.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/file_search.h b/src/nvim/file_search.h index 0b0b03c56a..833a1a05ff 100644 --- a/src/nvim/file_search.h +++ b/src/nvim/file_search.h @@ -1,6 +1,11 @@ #ifndef NVIM_FILE_SEARCH_H #define NVIM_FILE_SEARCH_H +/* Flags for find_file_*() functions. */ +#define FINDFILE_FILE 0 /* only files */ +#define FINDFILE_DIR 1 /* only directories */ +#define FINDFILE_BOTH 2 /* files and directories */ + #ifdef INCLUDE_GENERATED_DECLARATIONS # include "file_search.h.generated.h" #endif diff --git a/src/nvim/vim.h b/src/nvim/vim.h index e3690253a7..486800d0c7 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -242,11 +242,6 @@ enum { #define EXMODE_NORMAL 1 #define EXMODE_VIM 2 -/* Flags for find_file_*() functions. */ -#define FINDFILE_FILE 0 /* only files */ -#define FINDFILE_DIR 1 /* only directories */ -#define FINDFILE_BOTH 2 /* files and directories */ - # define W_WINCOL(wp) (wp->w_wincol) # define W_WIDTH(wp) (wp->w_width) # define W_ENDCOL(wp) (wp->w_wincol + wp->w_width) |