From 2191b1ac645374e6315cdff154bb561406c4fb88 Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Tue, 4 Apr 2017 22:07:11 +0200 Subject: [PATCH] Move round-number-to-decimals binding to init.el It is nowwtogether with all the other bindings. --- init.el | 1 + lisp/round-number-to-decimals.el | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/init.el b/init.el index 3cca0b4..0ae4817 100644 --- a/init.el +++ b/init.el @@ -1111,6 +1111,7 @@ ("C-a" . gpolonkai/move-to-beginning-of-line) ("C-e" . gpolonkai/move-to-end-of-line) ("M-q" . sachachua/fill-or-unfill-paragraph) + ("C-c r" . round-number-at-point-to-decimals) :map ctl-x-map ("C-y" . duplicate-line) ("_" . maximize-window) diff --git a/lisp/round-number-to-decimals.el b/lisp/round-number-to-decimals.el index cb4ec86..e2dc465 100644 --- a/lisp/round-number-to-decimals.el +++ b/lisp/round-number-to-decimals.el @@ -15,5 +15,3 @@ mult (get-number-at-point))) mult))))) - -(global-set-key (kbd "C-c r") 'round-number-at-point-to-decimals)