Ⅰ. 插件描述
vim syntax for LESS (dynamic CSS)Ⅱ. 基本信息
|
Ⅲ. 安装方法
使用Vundle管理器安装
在你的.vimrc下添加:Plugin 'groenewege/vim-less-safe-and-sound'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall
对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。
使用NeoBundle管理器安装
在你的.vimrc下添加:NeoBundle 'groenewege/vim-less-safe-and-sound'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall
使用VimPlug管理器安装
在你的.vimrc下添加:Plug 'groenewege/vim-less-safe-and-sound'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall
使用Pathogen管理器安装
在终端中运行以下命令:cd ~/.vim/bundle
git clone https://github.com/groenewege/vim-less
Ⅳ. 文档说明
# VIM-LESS
This vim bundle adds syntax highlighting, indenting and autocompletion for the dynamic stylesheet language LESS.
This bundle is compatible with vim-css-color,
vim-css3-syntax and possibly other plugins that place code
in after/syntax/css.vim
or after/syntax/css/*.vim
.
Installing and Using
- Install pathogen into
~/.vim/autoload/
and add the
following line to your~/.vimrc
:
call pathogen#infect()
Make a clone of the
vim-less
repository:$ mkdir -p ~/.vim/bundle $ cd ~/.vim/bundle $ git clone https://github.com/groenewege/vim-less
OR use vundle, adding this line to your
~/.vimrc
:Plugin 'groenewege/vim-less'
OR use neobundle, adding this line to your
~/.vimrc
:NeoBundle 'groenewege/vim-less'
OR use git submodules:
$ git submodule add https://github.com/groenewege/vim-less.git bundle/vim-less $ git submodule init
Map
.less to .css , lessc is required.
nnoremap <Leader>m :w <BAR> !lessc % > %:t:r.css<CR><space>
Credits
Inspiration from vim-haml,
scss-syntax.vim and
vim-less