annotate runtime/ftplugin/swayconfig.vim @ 29607:33d7c1fa2dac
v9.0.0144
patch 9.0.0144: text property cannot override 'cursorline' highlight
Commit: https://github.com/vim/vim/commit/f4ba8bc47eb3c6b5899ef31d083b9b8f0d4ca456
Author: Bram Moolenaar <Bram@vim.org>
Date: Fri Aug 5 17:05:04 2022 +0100
patch 9.0.0144: text property cannot override 'cursorline' highlight
Problem: Text property cannot override 'cursorline' highlight.
Solution: Add the "override" flag to prop_type_add(). (closes https://github.com/vim/vim/issues/5533,
closes #8225).
author |
Bram Moolenaar <Bram@vim.org> |
date |
Fri, 05 Aug 2022 18:15:08 +0200 |
parents |
34c1f4cd0c18 |
children |
|
rev |
line source |
29533
|
1 " Vim filetype plugin file
|
|
2 " Language: sway config file
|
|
3 " Original Author: James Eapen <james.eapen@vai.org>
|
|
4 " Maintainer: James Eapen <james.eapen@vai.org>
|
|
5 " Version: 0.1
|
|
6 " Last Change: 2022 June 07
|
|
7
|
|
8 if exists("b:did_ftplugin")
|
|
9 finish
|
|
10 endif
|
|
11
|
|
12 let b:did_ftplugin = 1
|
|
13
|
|
14 let b:undo_ftplugin = "setlocal cms<"
|
|
15
|
|
16 setlocal commentstring=#\ %s
|