I want to be able to toggle soft-wrapped lines in org-mode. My .emacs
file has this code:
;;;;;;;;;;;;;;
;; Org Mode ;;
;;;;;;;;;;;;;;
(global-set-key "\C-cl" 'org-store-link)
(global-set-key "\C-ca" 'org-agenda)
(global-set-key "\C-cc" 'org-capture)
(global-set-key "\C-cb" 'org-iswitchb)
;; Start-up with soft-wrap enabled
(setq org-startup-truncated nil) ; This works
;; Toggle soft-wrap with super-q
(define-key org-mode-map "s-q" 'toggle-truncate-lines) ; This doesn't
I would like to map it to something like super-q
or F7
. Is there something wrong with my syntax? Neither works.