Mercurial > vim
annotate runtime/ftplugin/css.vim @ 24051:da8347e453b4 v8.2.2567
patch 8.2.2567: Vim9: no error if variable is defined for existing function
Commit: https://github.com/vim/vim/commit/6c3843ca8ab105bfb85f6ea8bcec2cbc03f46e7f
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Mar 4 12:38:21 2021 +0100
patch 8.2.2567: Vim9: no error if variable is defined for existing function
Problem: Vim9: no error if variable is defined for existing function.
Solution: Check if name isn't already in use. (closes https://github.com/vim/vim/issues/7897)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 04 Mar 2021 12:45:03 +0100 |
parents | fab58304f77d |
children | 7c7432a53a6c |
rev | line source |
---|---|
7 | 1 " Vim filetype plugin file |
21825 | 2 " Language: CSS |
3 " Maintainer: Doug Kearns <dougkearns@gmail.com> | |
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> | |
23305 | 5 " Last Change: 2020 Dec 21 |
7 | 6 |
7 if exists("b:did_ftplugin") | |
8 finish | |
9 endif | |
10 let b:did_ftplugin = 1 | |
11 | |
1698 | 12 let s:cpo_save = &cpo |
13 set cpo&vim | |
14 | |
23305 | 15 let b:undo_ftplugin = "setl com< cms< inc< fo< ofu< isk<" |
7 | 16 |
375 | 17 setlocal comments=s1:/*,mb:*,ex:*/ commentstring& |
389 | 18 setlocal formatoptions-=t formatoptions+=croql |
1220 | 19 setlocal omnifunc=csscomplete#CompleteCSS |
23305 | 20 setlocal iskeyword+=- |
7 | 21 |
375 | 22 let &l:include = '^\s*@import\s\+\%(url(\)\=' |
1698 | 23 |
24 let &cpo = s:cpo_save | |
25 unlet s:cpo_save |