Hi Clark,
Thanks for the fix. Now it works OK from the command-line.
Funny thing, it still doesn't work from macros. I have a macro that opens my .bashrc:
_command void jh_edit_bashrc() name_info(',') {
edit('~/.bashrc', EDIT_RESTOREPOS);
}
This used to work fine. Now with SlickEdit 13.0.0 I need to change it to
_command void jh_edit_bashrc() name_info(',') {
edit('/home/jhurst/.bashrc', EDIT_RESTOREPOS);
}
to make it work.
Odd?
John Hurst
Wellington, New Zealand