Skip to content

Commit

Permalink
fix bug when the filename has spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
D0n9X1n committed Nov 23, 2017
1 parent 921b48a commit 22a1d6e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions plugin/quickrun.vim
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
"""""""""""""""""""""""
" quickrun.vim
" version: v0.0.2
" version: v0.0.3
" author: Dongxin Tang
" mail: [email protected]
"""""""""""""""""""""""

if !exists('g:quickrun_known_file_types')
let g:quickrun_known_file_types = {
\"cpp": ["!g++ -g %", "lldb ./a.out"],
\"c": ["!g++ -g %", "./a.out"],
\"php": ["!php %"],
\"vim": ["source %"],
\"py": ["!python %"],
\"cpp": ["!g++ -g \"%\"", "lldb ./a.out"],
\"c": ["!g++ -g \"%\"", "./a.out"],
\"php": ["!php \"%\""],
\"vim": ["source \"%\""],
\"py": ["!python \"%\""],
\"git": ["!git add.", "git commit -am '%'", "git push origin master"],
\"md": ["MarkdownPreview github"],
\}
Expand Down

0 comments on commit 22a1d6e

Please sign in to comment.