Skip to content

Commit

Permalink
Merge pull request #15 from databill/master
Browse files Browse the repository at this point in the history
Support files which includes spaces in filename
  • Loading branch information
Rykka committed Oct 25, 2015
2 parents 976f8c9 + d2dd7df commit c58ced4
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 c58ced4

Please sign in to comment.