quoted filename wildcards for filenames with whitespace

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@338 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2006-05-16 19:08:01 +00:00
parent 3bb199a738
commit 001527f540
12 changed files with 27 additions and 27 deletions

View File

@ -45,5 +45,5 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=nasm %f
compiler=nasm "%f"

View File

@ -49,9 +49,9 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=gcc -Wall -c %f
compiler=gcc -Wall -c "%f"
# the -o option is automatically added by Geany
linker=gcc -Wall %f
run_cmd=./%e
linker=gcc -Wall "%f"
run_cmd="./%e"

View File

@ -42,6 +42,6 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=ocamlc -c %f
linker=ocamlc %f
run_cmd=./%e
compiler=ocamlc -c "%f"
linker=ocamlc "%f"
run_cmd="./%e"

View File

@ -49,8 +49,8 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=g++ -Wall -c %f
compiler=g++ -Wall -c "%f"
# the -o option is automatically added by Geany
linker=g++ -Wall %f
run_cmd=./%e
linker=g++ -Wall "%f"
run_cmd="./%e"

View File

@ -49,5 +49,5 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=javac %f
run_cmd=java %e
compiler=javac "%f"
run_cmd=java "%e"

View File

@ -32,8 +32,8 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=latex %f
compiler=latex "%f"
# it is called linker, but here it is an alternative compiler command
linker=pdflatex %f
run_cmd=xdvi %f
run_cmd2=xpdf %f
linker=pdflatex "%f"
run_cmd=xdvi "%f"
run_cmd2=xpdf "%f"

View File

@ -38,5 +38,5 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=fpc %f 1>&2
run_cmd=./%e
compiler=fpc "%f" 1>&2
run_cmd="./%e"

View File

@ -51,6 +51,6 @@ compiler=perl -MO=Bytecode,-H,-o%fc %f
#compiler=perlcc -o %e %f
# instead of actual compiling, just run a nice syntax check
#compiler=perl -c %f
#compiler=perl -c "%f"
run_cmd=perl %f
run_cmd=perl "%f"

View File

@ -26,8 +26,8 @@ comment_use_indent=true
# (use only one of it at one time)
# Geany expects that compilers put there error messages on stderr, php -l put the messages on stdout,
# so to get it working, we push them to stderr
compiler=php -l %f 1>&2
run_cmd=php %f
compiler=php -l "%f" 1>&2
run_cmd=php "%f"
# use can also use something like this, to view your PHP or HTML files through a browser and webserver
#run_cmd=firefox http://localhost/test_site/%f

View File

@ -41,5 +41,5 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=python %f
run_cmd=python %f
compiler=python "%f"
run_cmd=python "%f"

View File

@ -46,5 +46,5 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
compiler=ruby -c %f
run_cmd=ruby %f
compiler=ruby -c "%f"
run_cmd=ruby "%f"

View File

@ -37,4 +37,4 @@ comment_use_indent=true
# %f will be replaced by the complete filename
# %e will be replaced by the filename without extension
# (use only one of it at one time)
run_cmd=./%f
run_cmd="./%f"