Mercurial > vim
view runtime/indent/xf86conf.vim @ 31119:e2c909e06424 v9.0.0894
patch 9.0.0894: virtual text property highlight ignores window background
Commit: https://github.com/vim/vim/commit/ee28c707e474682151554499874fc7bfb53360cb
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Nov 17 14:56:00 2022 +0000
patch 9.0.0894: virtual text property highlight ignores window background
Problem: Virtual text property highlight ignores window background.
Solution: Combine text prop attribute with win_attr into extra_attr.
(closes #11462)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 17 Nov 2022 16:00:06 +0100 |
parents | 4d76b3e07c07 |
children |
line wrap: on
line source
" Vim indent file " Language: XFree86 Configuration File " Maintainer: Doug Kearns <dougkearns@gmail.com> " Previous Maintainer: Nikolai Weibull <now@bitwi.se> " Last Change: 2022 April 25 if exists("b:did_indent") finish endif let b:did_indent = 1 setlocal indentexpr=GetXF86ConfIndent() setlocal indentkeys=!^F,o,O,=End setlocal nosmartindent let b:undo_indent = "setl inde< indk< si<" if exists("*GetXF86ConfIndent") finish endif function GetXF86ConfIndent() let lnum = prevnonblank(v:lnum - 1) if lnum == 0 return 0 endif let ind = indent(lnum) if getline(lnum) =~? '^\s*\(Sub\)\=Section\>' let ind = ind + shiftwidth() endif if getline(v:lnum) =~? '^\s*End\(Sub\)\=Section\>' let ind = ind - shiftwidth() endif return ind endfunction