diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-14 21:01:23 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-14 21:01:23 +0200 |
commit | 017ba07fa2cdc578245618717229444fd50c470d (patch) | |
tree | d848d329da08cbda1e846d6e7acf1a440f61d667 /src/option.h | |
parent | d9b0d83b13d2691e4544709abd87eac004715175 (diff) | |
download | vim-git-017ba07fa2cdc578245618717229444fd50c470d.tar.gz |
patch 8.1.2029: cannot control 'cursorline' highlighting wellv8.1.2029
Problem: Cannot control 'cursorline' highlighting well.
Solution: Add "screenline". (Christian Brabandt, closes #4933)
Diffstat (limited to 'src/option.h')
-rw-r--r-- | src/option.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/src/option.h b/src/option.h index 76d67d9de..bb68d5afc 100644 --- a/src/option.h +++ b/src/option.h @@ -287,15 +287,20 @@ #define STL_ALL ((char_u *) "fFtcvVlLknoObBrRhHmYyWwMqpPaN{#") // flags used for parsed 'wildmode' -#define WIM_FULL 1 -#define WIM_LONGEST 2 -#define WIM_LIST 4 +#define WIM_FULL 0x01 +#define WIM_LONGEST 0x02 +#define WIM_LIST 0x04 // arguments for can_bs() #define BS_INDENT 'i' // "Indent" #define BS_EOL 'o' // "eOl" #define BS_START 's' // "Start" +// flags for the 'culopt' option +#define CULOPT_LINE 0x01 // Highlight complete line +#define CULOPT_SCRLINE 0x02 // Highlight screen line +#define CULOPT_NBR 0x04 // Highlight Number column + #define LISPWORD_VALUE "defun,define,defmacro,set!,lambda,if,case,let,flet,let*,letrec,do,do*,define-syntax,let-syntax,letrec-syntax,destructuring-bind,defpackage,defparameter,defstruct,deftype,defvar,do-all-symbols,do-external-symbols,do-symbols,dolist,dotimes,ecase,etypecase,eval-when,labels,macrolet,multiple-value-bind,multiple-value-call,multiple-value-prog1,multiple-value-setq,prog1,progv,typecase,unless,unwind-protect,when,with-input-from-string,with-open-file,with-open-stream,with-output-to-string,with-package-iterator,define-condition,handler-bind,handler-case,restart-bind,restart-case,with-simple-restart,store-value,use-value,muffle-warning,abort,continue,with-slots,with-slots*,with-accessors,with-accessors*,defclass,defmethod,print-unreadable-object" /* |