command-N confusion

Q&A's, tips, howto's
Locked
dave_f
Posts: 8
Joined: Sun Nov 11, 2007 2:40 am
Location: Eugene, Oregon USA

command-N confusion

Post by dave_f »

This is not a very big issue, but every Mac- instinct tells me that command-N should bring up a new window in any program. But that's not the case in the newLISP IDE, where command-N is currently assigned to "Clear tab".

The cmd-N /new-window expectation seems to be hard-wired into my fingers - I must have made this mistake dozens of times. Anybody else bothered by this?

Suggestion: My sluggish synapses would have a much easier time if "Clear tab" was assigned to shift-cmd-N and "New" was assigned to cmd-N.

thanks,

dave_f

cormullion
Posts: 2038
Joined: Tue Nov 29, 2005 8:28 pm
Location: latiitude 50N longitude 3W
Contact:

Post by cormullion »

Ooh yes I can see that that might hurt. Command-N for Newk, perhaps... :)

Don't know whether you can modify the keyboard accelerators without editing the /usr/bin/newlisp-edit.lsp file itself. Change it like this perhaps:

Code: Select all

(gs:set-accelerator 'gs:FileClear "shift meta N")
(gs:set-accelerator 'gs:FileNew " meta N")

Lutz
Posts: 5289
Joined: Thu Sep 26, 2002 4:45 pm
Location: Pasadena, California
Contact:

Post by Lutz »

... will be changed according to Dave's and Cormullion's suggestions in the next version.

Lutz

Locked