You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I find the default mapping of [ and ] in worf to worf-backward and worf-forward to be awkward, as this prevents me from manually typing in links with square brackets.
I can override the mappings with the following in my init file;
The motivation for using [ and ] is simple: I navigate 90% of the time, and insert only 10% of the time. Therefore I assign easier keys to navigation rather than insertion.
Of course, this is Emacs. You can choose your own keys.
Thank you. I did not know about (quoted-insert) that seems like a more generic way to occasionally insert [], and as you say I can insert links and also use the mac-link-grab package. I agree with you that navigation being the most common case.
Would you consider adding to the documentation under the miscellaneous section. Perhaps I'm not the only one to have something new to learn about emacs.
"Go backwards to closest special position. ] does the same in the opposite direction. If you need to insert a [ or ] in the body, this can be done by prefixing the key with C-q."
I find the default mapping of [ and ] in worf to worf-backward and worf-forward to be awkward, as this prevents me from manually typing in links with square brackets.
I can override the mappings with the following in my init file;
(define-key worf-mode-map "]" nil)
(define-key worf-mode-map (kbd "M-]") 'worf-forward)
(define-key worf-mode-map "[" nil)
(define-key worf-mode-map (kbd "M-[") 'worf-backward)
Am I missing something? Surely it isn't desirable to effectively prevent the use of the characters [ and [ in all org-mode files?
Would this be a better default?
The text was updated successfully, but these errors were encountered: