aboutsummaryrefslogtreecommitdiff
path: root/src/vim.h
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-05-09 11:52:39 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-05-13 09:33:41 -0300
commitd2b715bf1de31fc784b399d6aafb5f7e41aef6cc (patch)
tree628f3ee34485e1af90374b744adea909c514c167 /src/vim.h
parent7c01d5ff9286d262097484c680e3a4eab49e2911 (diff)
downloadrneovim-d2b715bf1de31fc784b399d6aafb5f7e41aef6cc.tar.gz
rneovim-d2b715bf1de31fc784b399d6aafb5f7e41aef6cc.tar.bz2
rneovim-d2b715bf1de31fc784b399d6aafb5f7e41aef6cc.zip
API: Implement vim_{get,set}_option
Some functions from upstream VIM were reintegrated for this: - get_option_value_strict - set_option_value_err - set_option_value_for - unset_global_local_option
Diffstat (limited to 'src/vim.h')
-rw-r--r--src/vim.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/vim.h b/src/vim.h
index f48b7a6f4c..0032032fcf 100644
--- a/src/vim.h
+++ b/src/vim.h
@@ -1382,11 +1382,6 @@ typedef int VimClipboard; /* This is required for the prototypes. */
#define FILEINFO_READ_FAIL 2 /* CreateFile() failed */
#define FILEINFO_INFO_FAIL 3 /* GetFileInformationByHandle() failed */
-/* Option types for various functions in option.c */
-#define SREQ_GLOBAL 0 /* Request global option */
-#define SREQ_WIN 1 /* Request window-local option */
-#define SREQ_BUF 2 /* Request buffer-local option */
-
/* Character used as separated in autoload function/variable names. */
#define AUTOLOAD_CHAR '#'