annotate runtime/ftplugin/heex.vim @ 31489:966c87c57912
v9.0.1077
patch 9.0.1077: can add text property with negative ID before virtual text
Commit: https://github.com/vim/vim/commit/4ce1f99a2d58b809ab5a5c602bd031426f8527e8
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Dec 19 13:31:06 2022 +0000
patch 9.0.1077: can add text property with negative ID before virtual text
Problem: Can add text property with negative ID before virtual text
property.
Solution: Remember that a text property with a negative ID was used and give
an appropriate error message. (closes #11725)
Fix index computation.
author |
Bram Moolenaar <Bram@vim.org> |
date |
Mon, 19 Dec 2022 14:45:04 +0100 |
parents |
1e91e26ceebf |
children |
f62b36316d67 |
rev |
line source |
30547
|
1 " Elixir filetype plugin
|
|
2 " Language: HEEx
|
|
3 " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com>
|
|
4 " Last Change: 2022 Sep 21
|
|
5
|
|
6 if exists("b:did_ftplugin")
|
|
7 finish
|
|
8 endif
|
|
9 let b:did_ftplugin = 1
|
|
10
|
|
11 setlocal shiftwidth=2 softtabstop=2 expandtab
|
|
12
|
|
13 setlocal comments=:<%!--
|
|
14 setlocal commentstring=<%!--\ %s\ --%>
|
|
15
|
|
16 let b:undo_ftplugin = 'set sw< sts< et< com< cms<'
|