comparison src/option.h @ 18068:1101eacc1444 v8.1.2029

patch 8.1.2029: cannot control 'cursorline' highlighting well Commit: https://github.com/vim/vim/commit/017ba07fa2cdc578245618717229444fd50c470d Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 14 21:01:23 2019 +0200 patch 8.1.2029: cannot control 'cursorline' highlighting well Problem: Cannot control 'cursorline' highlighting well. Solution: Add "screenline". (Christian Brabandt, closes https://github.com/vim/vim/issues/4933)
author Bram Moolenaar <Bram@vim.org>
date Sat, 14 Sep 2019 21:15:04 +0200
parents 6650e3dff8d4
children 5ae41d0ea397
comparison
equal deleted inserted replaced
18067:9e20b59dd8ab 18068:1101eacc1444
285 #define STL_TABPAGENR 'T' // tab page label nr 285 #define STL_TABPAGENR 'T' // tab page label nr
286 #define STL_TABCLOSENR 'X' // tab page close nr 286 #define STL_TABCLOSENR 'X' // tab page close nr
287 #define STL_ALL ((char_u *) "fFtcvVlLknoObBrRhHmYyWwMqpPaN{#") 287 #define STL_ALL ((char_u *) "fFtcvVlLknoObBrRhHmYyWwMqpPaN{#")
288 288
289 // flags used for parsed 'wildmode' 289 // flags used for parsed 'wildmode'
290 #define WIM_FULL 1 290 #define WIM_FULL 0x01
291 #define WIM_LONGEST 2 291 #define WIM_LONGEST 0x02
292 #define WIM_LIST 4 292 #define WIM_LIST 0x04
293 293
294 // arguments for can_bs() 294 // arguments for can_bs()
295 #define BS_INDENT 'i' // "Indent" 295 #define BS_INDENT 'i' // "Indent"
296 #define BS_EOL 'o' // "eOl" 296 #define BS_EOL 'o' // "eOl"
297 #define BS_START 's' // "Start" 297 #define BS_START 's' // "Start"
298
299 // flags for the 'culopt' option
300 #define CULOPT_LINE 0x01 // Highlight complete line
301 #define CULOPT_SCRLINE 0x02 // Highlight screen line
302 #define CULOPT_NBR 0x04 // Highlight Number column
298 303
299 #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" 304 #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"
300 305
301 /* 306 /*
302 * The following are actual variables for the options 307 * The following are actual variables for the options