diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:06:49 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-08-18 15:06:49 +0100 |
commit | f4fe41adfef8fac533b5f901ee64a980cbcb6f60 (patch) | |
tree | ed5307f42a55aa0ec1b0bc86505b9e0ff13cd0ce /.emacs.d/lisp/init-editor.el | |
parent | 200376d3afa8f014ccface4f017009e89ecd6f10 (diff) | |
download | dotfiles-f4fe41adfef8fac533b5f901ee64a980cbcb6f60.tar.gz |
Add operate-on-number
Diffstat (limited to '.emacs.d/lisp/init-editor.el')
-rw-r--r-- | .emacs.d/lisp/init-editor.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-editor.el b/.emacs.d/lisp/init-editor.el index 3e48fc8..35b07e4 100644 --- a/.emacs.d/lisp/init-editor.el +++ b/.emacs.d/lisp/init-editor.el @@ -209,5 +209,9 @@ and file 'filename' will be opened and cursor set on line 'linenumber'" ;; (add-to-list 'auto-mode-alist '("\\.adoc\\'" . adoc-mode)) ;; (add-to-list 'auto-mode-alist '("\\.asciidoc\\'" . adoc-mode))) +(use-package operate-on-number + :bind + ("C-c ." . operate-on-number-at-point)) + (provide 'init-editor) ;;; init-editor.el ends here |