summaryrefslogtreecommitdiffstats
path: root/after/syntax/less.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2015-07-18 23:27:31 +0200
committerAdam Stankiewicz <sheerun@sher.pl>2015-07-18 23:27:31 +0200
commitc154d82557a4a7642510ee9a4f0c1a8efb9af7e2 (patch)
tree97f55dd7ce3547584fbc94b234ae72c5306a58cd /after/syntax/less.vim
parentcf1e53bc39c96b9f5586a68efa118a13c615da13 (diff)
downloadvim-polyglot-c154d82557a4a7642510ee9a4f0c1a8efb9af7e2.tar.gz
vim-polyglot-c154d82557a4a7642510ee9a4f0c1a8efb9af7e2.zip
Remove css-color as it seems to make performance bad, closes #62
Diffstat (limited to 'after/syntax/less.vim')
-rw-r--r--after/syntax/less.vim17
1 files changed, 0 insertions, 17 deletions
diff --git a/after/syntax/less.vim b/after/syntax/less.vim
deleted file mode 100644
index bb7bb56a..00000000
--- a/after/syntax/less.vim
+++ /dev/null
@@ -1,17 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'css-color') == -1
-
-" Language: Colorful CSS Color Preview
-" Author: Aristotle Pagaltzis <pagaltzis@gmx.de>
-
-if !( has('gui_running') || &t_Co==256 ) | finish | endif
-
-" variable | property | multiline | end-of-line | plugin
-" -----------------------+----------------+----------------+-------------+---------
-" lessCssAttribute | lessCssComment | lessComment | https://github.com/genoma/vim-less
-" lessAttribute | lessCssComment | lessComment | https://github.com/KohPoll/vim-less
-" lessVariableValue | lessDefinition | cssComment | lessComment | https://github.com/groenewege/vim-less
-" lessVariableDefinition | cssDefinition | cssComment | lessComment | https://github.com/lunaru/vim-less
-
-call css_color#init('css', 'extended', 'lessVariableValue,lessVariableDefinition,lessDefinition,lessCssAttribute,lessAttribute,cssDefinition,cssComment,lessCssComment,lessComment')
-
-endif