88
99" Only do this when not done yet for this buffer
1010if exists (" b:did_ftplugin" )
11- finish
11+ finish
1212endif
1313
1414let b: did_ftplugin = 1
@@ -33,19 +33,19 @@ setlocal commentstring=;%s
3333" Take all directories of the CLOJURE_SOURCE_DIRS environment variable
3434" and add them to the path option.
3535if has (" win32" ) || has (" win64" )
36- let s: delim = " ;"
36+ let s: delim = " ;"
3737else
38- let s: delim = " :"
38+ let s: delim = " :"
3939endif
4040for s: dir in split ($CLOJURE_SOURCE_DIRS , s: delim )
41- let s: path = fnameescape (s: dir . " /**" )
42- " Whitespace escaping for Windows
43- let s: path = substitute (s: path , ' \' , ' \\\\' , ' g' )
44- let s: path = substitute (s: path , ' \ ' , ' \\ ' , ' g' )
45- execute " setlocal path+=" . s: path
41+ let s: path = fnameescape (s: dir . " /**" )
42+ " Whitespace escaping for Windows
43+ let s: path = substitute (s: path , ' \' , ' \\\\' , ' g' )
44+ let s: path = substitute (s: path , ' \ ' , ' \\ ' , ' g' )
45+ execute " setlocal path+=" . s: path
4646endfor
4747if exists (' $CLOJURE_SOURCE_DIRS' )
48- let b: undo_ftplugin .= ' | setlocal path<'
48+ let b: undo_ftplugin .= ' | setlocal path<'
4949endif
5050
5151" When the matchit plugin is loaded, this makes the % command skip parens and
@@ -55,12 +55,12 @@ let b:match_skip = 's:comment\|string\|character'
5555
5656" Win32 can filter files in the browse dialog
5757if has (" gui_win32" ) && ! exists (" b:browsefilter" )
58- let b: browsefilter = " Clojure Source Files (*.clj)\t *.clj\n " .
59- \ " ClojureScript Source Files (*.cljs)\t *.cljs\n " .
60- \ " Java Source Files (*.java)\t *.java\n " .
61- \ " All Files (*.*)\t *.*\n "
58+ let b: browsefilter = " Clojure Source Files (*.clj)\t *.clj\n " .
59+ \ " ClojureScript Source Files (*.cljs)\t *.cljs\n " .
60+ \ " Java Source Files (*.java)\t *.java\n " .
61+ \ " All Files (*.*)\t *.*\n "
6262endif
6363
6464let &cpo = s: cpo_save
6565
66- " vim:ts = 8 sts = 8 sw = 8 noet :
66+ " vim:sts = 4 sw = 4 et :
0 commit comments