annotate runtime/ftplugin/vue.vim @ 29664:6569c71c5ca5 v9.0.0172

patch 9.0.0172: trying to allocate zero bytes Commit: https://github.com/vim/vim/commit/1024690c015921b0a458172bc368133f63af1b89 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Aug 8 17:08:05 2022 +0100 patch 9.0.0172: trying to allocate zero bytes Problem: Trying to allocate zero bytes. Solution: Do not allocate the proptype array when there are none. (closes #10867)
author Bram Moolenaar <Bram@vim.org>
date Mon, 08 Aug 2022 18:15:03 +0200
parents 912224cab37f
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
29352
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
1 " Vim filetype plugin file
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
2 " Language: vue
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
3
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
4 if exists("b:did_ftplugin") | finish | endif
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
5 let b:did_ftplugin = 1
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
6
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
7 " Make sure the continuation lines below do not cause problems in
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
8 " compatibility mode.
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
9 let s:save_cpo = &cpo
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
10 set cpo-=C
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
11
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
12 " Copied from ftplugin/html.vim
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
13 " Original thanks to Johannes Zellner and Benji Fisher.
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
14 if exists("loaded_matchit")
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
15 let b:match_ignorecase = 1
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
16 let b:match_words = '<:>,'
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
17 \ .. '<\@<=[ou]l\>[^>]*\%(>\|$\):<\@<=li\>:<\@<=/[ou]l>,'
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
18 \ .. '<\@<=dl\>[^>]*\%(>\|$\):<\@<=d[td]\>:<\@<=/dl>,'
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
19 \ .. '<\@<=\([^/][^ \t>]*\)[^>]*\%(>\|$\):<\@<=/\1>'
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
20 endif
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
21
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
22 " Restore the saved compatibility options.
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
23 let &cpo = s:save_cpo
912224cab37f Update runtime files
Bram Moolenaar <Bram@vim.org>
parents:
diff changeset
24 unlet s:save_cpo