Mercurial > vim
view runtime/ftplugin/heex.vim @ 32726:ef1c4fa8fc11
Update my name and email in runtime files (#12763)
Commit: https://github.com/vim/vim/commit/21aaff3faa828c5c2677a0a9f1b90a0b780d57f6
Author: Lily Ballard <lily@ballards.net>
Date: Fri Aug 11 10:30:27 2023 -0700
Update my name and email in runtime files (https://github.com/vim/vim/issues/12763)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 11 Aug 2023 19:45:02 +0200 |
parents | f62b36316d67 |
children | eca516f9c19f |
line wrap: on
line source
" Elixir filetype plugin " Language: HEEx " Maintainer: Mitchell Hanberg <vimNOSPAM@mitchellhanberg.com> " Last Change: 2022 Sep 21 if exists("b:did_ftplugin") finish endif let b:did_ftplugin = 1 setlocal shiftwidth=2 softtabstop=2 expandtab setlocal comments=:<%!-- setlocal commentstring=<%!--\ %s\ --%> let b:undo_ftplugin = 'set sw< sts< et< com< cms<' " HTML: thanks to Johannes Zellner and Benji Fisher. if exists("loaded_matchit") && !exists("b:match_words") let b:match_ignorecase = 1 let b:match_words = '<!--:-->,' .. \ '<:>,' .. \ '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,' .. \ '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,' .. \ '<\@<=\([^/!][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>' let b:undo_ftplugin ..= " | unlet! b:match_ignorecase b:match_words" endif