We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c70003 commit b54a4d6Copy full SHA for b54a4d6
ftplugin/clojure.vim
@@ -66,10 +66,10 @@ endif
66
67
" Filter files in the browse dialog
68
if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter")
69
- let b:browsefilter = "Clojure Source Files (*.clj)\t*.clj\n" .
70
- \ "ClojureScript Source Files (*.cljs)\t*.cljs\n" .
71
- \ "Java Source Files (*.java)\t*.java\n" .
72
- \ "All Files (*.*)\t*.*\n"
+ let b:browsefilter = "All Files\t*\n" .
+ \ "Clojure Files\t*.clj;*.cljc;*.cljs;*.cljx\n" .
+ \ "EDN Files\t*.edn\n" .
+ \ "Java Files\t*.java\n"
73
let b:undo_ftplugin .= ' | unlet! b:browsefilter'
74
endif
75
0 commit comments