summaryrefslogtreecommitdiffstats
path: root/ftplugin
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2017-11-19 21:44:15 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2017-11-19 21:44:15 +0100
commit5ddfa1ac28edac659c4cea3ea3e81607f1183f94 (patch)
treee4faede9e974a68d7c803e2c80ddd118f009856a /ftplugin
parentdbe9bc927f1114dd447e4ed58a5d23fb1f989246 (diff)
downloadvim-polyglot-5ddfa1ac28edac659c4cea3ea3e81607f1183f94.tar.gz
vim-polyglot-5ddfa1ac28edac659c4cea3ea3e81607f1183f94.zip
Remove openscad, fixes #249
Diffstat (limited to 'ftplugin')
-rw-r--r--ftplugin/openscad.vim18
1 files changed, 0 insertions, 18 deletions
diff --git a/ftplugin/openscad.vim b/ftplugin/openscad.vim
deleted file mode 100644
index 2933c232..00000000
--- a/ftplugin/openscad.vim
+++ /dev/null
@@ -1,18 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'openscad') == -1
-
-" Blatantly stolen from vim74\ftplugin\c.vim
-
-" Set 'formatoptions' to break comment lines but not other lines,
-" and insert the comment leader when hitting <CR> or using "o".
-setlocal fo-=t fo+=croql
-
-" Set 'comments' to format dashed lists in comments.
-setlocal comments=sO:*\ -,mO:*\ \ ,exO:*/,s1:/*,mb:*,ex:*/,://
-
-" Win32 can filter files in the browse dialog
-if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
- let b:browsefilter = "OpenSCAD Source Files (*.scad)\t*.scad\n" .
- \ "All Files (*.*)\t*.*\n"
-endif
-
-endif