diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2022-01-01 18:34:50 +0100 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2022-01-01 18:34:50 +0100 |
commit | c96947b1c64c56f70125a9bac9c006f69e45d5d3 (patch) | |
tree | e15e44698144fdd94d00a28697708f03df7fa431 /ftplugin/clojure.vim | |
parent | f621f6c1eeadf73780ff7a7929a025a25a66702a (diff) | |
download | vim-polyglot-c96947b1c64c56f70125a9bac9c006f69e45d5d3.tar.gz vim-polyglot-c96947b1c64c56f70125a9bac9c006f69e45d5d3.zip |
Update
Diffstat (limited to '')
-rw-r--r-- | ftplugin/clojure.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/clojure.vim b/ftplugin/clojure.vim index 7fe81f9d..853339ff 100644 --- a/ftplugin/clojure.vim +++ b/ftplugin/clojure.vim @@ -70,10 +70,10 @@ endif " Filter files in the browse dialog if (has("gui_win32") || has("gui_gtk")) && !exists("b:browsefilter") - let b:browsefilter = "Clojure Source Files (*.clj)\t*.clj\n" . - \ "ClojureScript Source Files (*.cljs)\t*.cljs\n" . - \ "Java Source Files (*.java)\t*.java\n" . - \ "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" let b:undo_ftplugin .= ' | unlet! b:browsefilter' endif |