Skip to content

Commit

Permalink
Support files which includes spaces in filename
Browse files Browse the repository at this point in the history
  • Loading branch information
databill committed Oct 22, 2015
1 parent 976f8c9 commit d2dd7df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion after/ftplugin/rst/instantRst.vim
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function! s:startDaemon(file) "{{{
let args_template = g:instant_rst_template != '' ?
\ ' -t '.g:instant_rst_template : ''
let args_file = a:file != '' ?
\ ' -f '.a:file : ''
\ ' -f '.substitute(a:file, ' ', '\\ ', 'g') : ''
let args_local = g:instant_rst_localhost_only == 1 ?
\ ' -l ' : ''
let args_additional_dirs = ''
Expand Down

0 comments on commit d2dd7df

Please sign in to comment.