comparison src/vim.h @ 5610:2ace11abcfb5 v7.4.152

updated for version 7.4.152 Problem: Python: Cannot iterate over options. Solution: Add options iterator. (ZyX)
author Bram Moolenaar <bram@vim.org>
date Tue, 14 Jan 2014 16:55:00 +0100
parents 9c777e2c7024
children 136f05449f29
comparison
equal deleted inserted replaced
5609:fca812276925 5610:2ace11abcfb5
2247 #define SOPT_GLOBAL 0x08 /* Option has global value */ 2247 #define SOPT_GLOBAL 0x08 /* Option has global value */
2248 #define SOPT_WIN 0x10 /* Option has window-local value */ 2248 #define SOPT_WIN 0x10 /* Option has window-local value */
2249 #define SOPT_BUF 0x20 /* Option has buffer-local value */ 2249 #define SOPT_BUF 0x20 /* Option has buffer-local value */
2250 #define SOPT_UNSET 0x40 /* Option does not have local value set */ 2250 #define SOPT_UNSET 0x40 /* Option does not have local value set */
2251 2251
2252 /* Option types for various functions in option.c */
2252 #define SREQ_GLOBAL 0 /* Request global option */ 2253 #define SREQ_GLOBAL 0 /* Request global option */
2253 #define SREQ_WIN 1 /* Request window-local option */ 2254 #define SREQ_WIN 1 /* Request window-local option */
2254 #define SREQ_BUF 2 /* Request buffer-local option */ 2255 #define SREQ_BUF 2 /* Request buffer-local option */
2255 2256
2256 /* Character used as separated in autoload function/variable names. */ 2257 /* Character used as separated in autoload function/variable names. */