Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
One of our authors was wondering if
CTRL+w
|
can be mapped to something else in editor or removed.
When trying to select using
CTRL+E
|
they are closing the active window.
Thanks Bryon
map ctrl-w {}
Thanks Clay, does this need to be put into an acl and in the init folder?
Bryon
If you want it to apply for everyone, then that's probably easiest. If you already have an init.acl startup file, you can just add it to the existing file.
If you discover that it doesn't work from init.acl, you may need to move it to a file in editinit instead, so it will load later in the startup process.
If someone just wants a quick fix for the current session, they can just type it into the command window.
Thank you Clay, so to change the key I need to add the new key into the brackets
map ctrl-w {ctrl-w + T}
Thanks
Bryon
No, but it depends what you are trying to do.
map ctrl-w { response("You pressed ctrl-w!"); }
map ctrl-T { FileClose; } map ctrl-w {}You can see what command a key combination will trigger by typing
show fullkeymapin the command window.