diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-09 11:52:39 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-05-13 09:33:41 -0300 |
commit | d2b715bf1de31fc784b399d6aafb5f7e41aef6cc (patch) | |
tree | 628f3ee34485e1af90374b744adea909c514c167 /src/vim.h | |
parent | 7c01d5ff9286d262097484c680e3a4eab49e2911 (diff) | |
download | rneovim-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.h | 5 |
1 files changed, 0 insertions, 5 deletions
@@ -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 '#' |