Any way to not remember last position on file open?

I find the way that the editor goes to the previous position when a file is opened rather annoying. I would prefer it to just go to the first line. I can’t find anything in the preferences to turn this off.

Any suggestions?

Huh, there is a preference for everything… but not that :stuck_out_tongue:

As a workaround, you can use a Komodo macro to reposition the caret to the start of the document:

ko.commands.doCommand("cmd_documentHome")

and set the macro to trigger to “After file open” event (in the Triggers tab of the macro dialog).

Thanks. I thought I might have to do something like that. You have saved me the time researching how to code that up!