Files
.emacs.d/modules/text-editing/siren-smart-shift.el
Jim Myhrberg 39d75c803a Update keybindings in unused siren-smart-shift module
This is to ensure it stay up to date with the siren-shift-text module,
which is currently the module I use for shifting text left/right. At
some point I will re-evaluate the smart-shift package.
2019-09-10 16:59:56 +01:00

18 lines
346 B
EmacsLisp

;;; siren-smart-shift.el --- jimeh's Emacs Siren: smart-shift
;;; Commentary:
;; Configuration for smart-shift
;;; Code:
(use-package smart-shift
:bind
("C-c [" . smart-shift-left)
("C-c ]" . smart-shift-right)
("M-{" . smart-shift-left)
("M-}" . smart-shift-right))
(provide 'siren-smart-shift)
;;; siren-smart-shift.el ends here