Could someone please give me a hand remapping org-shiftmetaright
| org-shiftmetaleft
to [shift-select-meta]left-word
| [shift-select
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)))