Mercurial > vim
annotate runtime/ftplugin/less.vim @ 16464:9bb2192a7c95 v8.1.1236
patch 8.1.1236: sjiscorr.c not found in shadow directory
commit https://github.com/vim/vim/commit/fe368edcc00f2294e43531f72c2569aaf5964821
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Apr 29 20:30:54 2019 +0200
patch 8.1.1236: sjiscorr.c not found in shadow directory
Problem: sjiscorr.c not found in shadow directory. (Tony Mechelynck)
Solution: Link po/*.c files with "make shadow".
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 29 Apr 2019 20:45:05 +0200 |
parents | 11d78e58a487 |
children |
rev | line source |
---|---|
6476 | 1 " Vim filetype plugin |
2 " Language: less | |
3 " Maintainer: Alessandro Vioni <jenoma@gmail.com> | |
4 " URL: https://github.com/genoma/vim-less | |
5 " Last Change: 2014 November 24 | |
6 | |
7 " Only do this when not done yet for this buffer | |
8 if exists("b:did_ftplugin") | |
9 finish | |
10 endif | |
11 let b:did_ftplugin = 1 | |
12 | |
13 let b:undo_ftplugin = "setl cms< def< inc< inex< ofu< sua<" | |
14 | |
15 setlocal formatoptions-=t formatoptions+=croql | |
16 | |
17 setlocal comments=:// commentstring=//\ %s | |
18 | |
19 setlocal omnifunc=csscomplete#CompleteCSS | |
20 setlocal suffixesadd=.less |