Remap org-shiftmetaright | org-shiftmetaleft to [shift-select-meta]left-word | [shift-select-meta]right-word]

后端 未结 3 1543
日久生厌
日久生厌 2021-01-21 20:18

Could someone please give me a hand remapping org-shiftmetaright | org-shiftmetaleft to [shift-select-meta]left-word | [shift-select

3条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-21 20:56

    As you just want to fall back to the default behaviour for these bindings, we can simply remove the org-mode overrides.

    (eval-after-load "org"
      '(progn
         (define-key org-mode-map (kbd "") nil)
         (define-key org-mode-map (kbd "") nil)
         (define-key org-mode-map (kbd "") nil)
         (define-key org-mode-map (kbd "") nil)))
    

提交回复
热议问题