When a word is highlighted as being spelled incorrectly I control click on it to get a list of corrections and then select one. Is there any way to improve on this such as not using the mouse or tracker pad?
The sort of short cut I an thinking of is as soon as I have typed a word and it is shown as an error to be able to press some key combination to show the correction list and then use the number keys to select the correct word.
Dave.
--------------------------------------------------------------------- Intel Corporation (UK) Limited Registered No. 1134945 (England) Registered Office: Pipers Way, Swindon SN3 1RJ VAT No: 860 2173 47
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.
On 23 Aug 2013, at 15:49, Baldwin, Dave wrote:
When a word is highlighted as being spelled incorrectly I control click on it to get a list of corrections and then select one. Is there any way to improve on this such as not using the mouse or tracker pad?
Yes, press ⌥F2 with caret on the word (no need to select it first).
This key also works in the file browser (to open the context menu).
Thanks. Is it possible to record this action somehow in a macro? You only find a word has been misspelt after you have moved away from it so you need to do move back by one character first before you can use ⌥F2.
Dave.
On 23/08/2013 16:02, "Allan Odgaard" mailinglist@textmate.org wrote:
On 23 Aug 2013, at 15:49, Baldwin, Dave wrote:
When a word is highlighted as being spelled incorrectly I control click on it to get a list of corrections and then select one. Is there any way to improve on this such as not using the mouse or tracker pad?
Yes, press ⌥F2 with caret on the word (no need to select it first).
This key also works in the file browser (to open the context menu).
textmate mailing list textmate@lists.macromates.com http://lists.macromates.com/listinfo/textmate
--------------------------------------------------------------------- Intel Corporation (UK) Limited Registered No. 1134945 (England) Registered Office: Pipers Way, Swindon SN3 1RJ VAT No: 860 2173 47
This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies.
On 23 Aug 2013, at 18:18, Baldwin, Dave wrote:
Thanks. Is it possible to record this action somehow in a macro?
Showing context menu is not a recordable action, but you can use it in a key bindings dictionary, e.g.:
// ~/Library/Application Support/TextMate/KeyBindings.dict { "@d" = ("moveLeft:", "showContextMenu:"); }
That will make ⌘D move left and then show the context menu (with the spelling suggestions).