Page 4 of 4

Re: Create multiple files at once

Posted: 2023-07-20, 08:12 UTC
by KozakMak
petermad wrote: 2023-07-20, 08:00 UTC 2KozakMak
And how about with tcer.exe and NO files selected - does that not work?
I tested it this way.

Also Editor="%commander_path%\Utils\Notepad++\notepad++.exe" doesn't work :!:

upd

"D:\Program" error, so this is because there are spaces in the paths to wincmd.ini

Re: Create multiple files at once

Posted: 2023-07-20, 09:45 UTC
by ghisler(Author)
Also Editor="%commander_path%\Utils\Notepad++\notepad++.exe" doesn't work
Due to a Windows misfeature, surrounding quotes get removed when reading from ini files. Please change it to
Editor=""%commander_path%\Utils\Notepad++\notepad++.exe""
or put "%commander_path%\Utils\Notepad++\notepad++.exe" in the editor field in Configuration - Options - Edit/View. TC will add the extra double quotes.

Also tcer.exe looks at the selection in TC and ignores the parameter passed to it when something is selected.

Re: Create multiple files at once

Posted: 2023-07-20, 09:54 UTC
by KozakMak
ghisler(Author) wrote: 2023-07-20, 09:45 UTC TC will add the extra double quotes.
Editor=""%commander_path%\Utils\Notepad++\notepad++.exe" "%1""

this works!