Re: ex.err & Geany
- Posted by petelomax Mar 22, 2013
- 3385 views
ghaberek said...
Shouldn't that geany line be something like this... ?
-- usage: geany path_to_file:line:col system_exec( sprintf("geany \"%s:%d:%d\"", {file_name,start_line,start_col}) )
-Greg
Has this been tried?
-- usage: geany path_to_file:line:col system_exec( sprintf("geany \"%s\":%d:%d", {file_name,start_line,start_col}) )
EDIT: Failing that, how about:
chdir(pathname(file_name)) system_exec( sprintf("geany %s:%d:%d", {filename(file_name),start_line,start_col}) )