Skip to content

Commit

Permalink
Merge pull request #45 from 3to8-decoder/master
Browse files Browse the repository at this point in the history
fix: allow g:flutter_command to have spaces so stuff like g:flutter_c…
  • Loading branch information
insidewhy authored Jun 4, 2022
2 parents 2292de5 + b003d6a commit 32b9fa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/flutter.vim
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ function! flutter#run_or_attach(type, show, use_last_option, args) abort
if has("win32") || has("win64")
let cmd += [&shell, &shellcmdflag]
endif
let cmd += [g:flutter_command, a:type]
let cmd += split(g:flutter_command) + [a:type]
if !empty(a:args)
let cmd += a:args
if a:use_last_option
Expand Down

0 comments on commit 32b9fa0

Please sign in to comment.