diff options
| author | Ravi R Kiran <aine.marina@gmail.com> | 2015-05-13 20:41:02 (GMT) |
|---|---|---|
| committer | Ravi R Kiran <aine.marina@gmail.com> | 2015-05-13 20:41:02 (GMT) |
| commit | 9f0e4dbe746da6f6ef3e0d560ff4f3d94b04734a (patch) | |
| tree | 91d85325beb5cc1a83f976fce2d6c98db3b8a659 /lisp | |
| parent | bdf469437b168eba31ab8645031ea8a5e23ff5a3 (diff) | |
| download | dotemacs-9f0e4dbe746da6f6ef3e0d560ff4f3d94b04734a.zip dotemacs-9f0e4dbe746da6f6ef3e0d560ff4f3d94b04734a.tar.gz dotemacs-9f0e4dbe746da6f6ef3e0d560ff4f3d94b04734a.tar.bz2 | |
Bug in hydra.el is finally fixed
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ravi-init-maps.el | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/lisp/ravi-init-maps.el b/lisp/ravi-init-maps.el index b6855c1..825bdc1 100644 --- a/lisp/ravi-init-maps.el +++ b/lisp/ravi-init-maps.el @@ -30,12 +30,14 @@ :config (progn (defhydra hydra-operate-on-number () - "Arithmetic operations: + - * / -Remainder: \\ -Exponent: ^ -Arithmetic shift:< > -Base conversion: b o x X # -Choices: " + " + Arithmetic operations: + - * / + Remainder: \\ + Exponent: \\^ + Arithmetic shift: < > + Base conversion: b o x X # + Format: %%%% + " ("+" apply-operation-to-number-at-point) ("-" apply-operation-to-number-at-point) ("*" apply-operation-to-number-at-point) @@ -49,8 +51,7 @@ Choices: " ("x" apply-operation-to-number-at-point :exit t) ("X" apply-operation-to-number-at-point :exit t) ("#" apply-operation-to-number-at-point :exit t) - ;; ("%" apply-operation-to-number-at-point :exit t) ; need to file bug report - )) + ("%" apply-operation-to-number-at-point :exit t))) :ensure t) ;; To do: launcher map, toggle map |
