aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/syntax/python.vim
diff options
context:
space:
mode:
authorAnton Bobov <abobov@gmail.com>2013-11-14 11:28:27 +0600
committerAnton Bobov <abobov@gmail.com>2013-11-14 18:31:37 +0600
commitd0597921f6ee9b2bdfd7e0581df2bd7d59f5dfc9 (patch)
treee1840de57b9f27df43e910330c311ff253989e4a /files/.vim/syntax/python.vim
parentc10e0e31a4233e82ba83504c145d746b206435cd (diff)
Remove unused vim plugins.
Diffstat (limited to 'files/.vim/syntax/python.vim')
-rw-r--r--files/.vim/syntax/python.vim13
1 files changed, 0 insertions, 13 deletions
diff --git a/files/.vim/syntax/python.vim b/files/.vim/syntax/python.vim
deleted file mode 100644
index 53da6ae..0000000
--- a/files/.vim/syntax/python.vim
+++ /dev/null
@@ -1,13 +0,0 @@
-let python_highlight_all = 1
-syn match pythonError "^\s*def\s\+\w\+(.*)\s*$" display
-syn match pythonError "^\s*class\s\+\w\+(.*)\s*$" display
-syn match pythonError "^\s*for\s.*[^:]$" display
-syn match pythonError "^\s*except\s*$" display
-syn match pythonError "^\s*finally\s*$" display
-syn match pythonError "^\s*try\s*$" display
-syn match pythonError "^\s*else\s*$" display
-syn match pythonError "^\s*else\s*[^:].*" display
-syn match pythonError "^\s*if\s.*[^\:]$" display
-syn match pythonError "^\s*except\s.*[^\:]$" display
-syn match pythonError "[;]$" display
-syn keyword pythonError do