Mercurial > vim
annotate runtime/ftplugin/css.vim @ 28958:7fb63ad3a9ab v8.2.5001
patch 8.2.5001: checking translations affects the search pattern history
Commit: https://github.com/vim/vim/commit/8a3704723c40779d688ef957dbe5bd8b65c25f95
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun May 22 15:28:31 2022 +0100
patch 8.2.5001: checking translations affects the search pattern history
Problem: Checking translations affects the search pattern history.
Solution: Use "keeppatterns". (Doug Kearns)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sun, 22 May 2022 16:30:03 +0200 |
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 |