diff options
| author | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-08 14:04:20 +0200 |
|---|---|---|
| committer | Thomas Schneider <qsx@chaotikum.eu> | 2020-07-08 14:04:20 +0200 |
| commit | c442e9169b3dfbbaba7fa2f13a590a383706c7f7 (patch) | |
| tree | e649487c70b2e6f4524dc7115c34d7dbe62b3af9 /dot.emacs.d/init.el | |
| parent | 15435b0f800ba61d955f7ebe54c48a21777f2fb4 (diff) | |
Emacs/calc: Use keypad comma as decimal separator
Diffstat (limited to 'dot.emacs.d/init.el')
| -rw-r--r-- | dot.emacs.d/init.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dot.emacs.d/init.el b/dot.emacs.d/init.el index 9f370ce..94cf1e3 100644 --- a/dot.emacs.d/init.el +++ b/dot.emacs.d/init.el @@ -268,6 +268,9 @@ (add-hook 'text-mode-hook #'turn-on-auto-fill) +;; Use keypad comma as decimal separator +(define-key calc-digit-map (kbd "<kp-separator">) ".") + ;;; Mail (use-package gnus :config |
