Skip to content

Commit

Permalink
Add bindings without hyper key.
Browse files Browse the repository at this point in the history
Useful for non-Apple keyboards. On Apple keyboards, I bind Fn to Hyper.
There isn't an Fn key on non-Apple keyboards though.
  • Loading branch information
danielmai committed Jun 6, 2016
1 parent 89ebfb2 commit 1134d68
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config.org
Original file line number Diff line number Diff line change
Expand Up @@ -1083,7 +1083,8 @@ Changing the =frame-zoom-font-difference= essentially enables a
(use-package zoom-frm
:ensure t
:bind (("C-M-=" . zoom-in/out)
("H-z" . toggle-zoom-frame))
("H-z" . toggle-zoom-frame)
("s-<f1>" . toggle-zoom-frame))
:config
(setq frame-zoom-font-difference 10))
#+end_src
Expand Down Expand Up @@ -1146,7 +1147,8 @@ while still being in org mode.

#+begin_src emacs-lisp
(use-package visible-mode
:bind ("H-v" . visible-mode))
:bind (("H-v" . visible-mode)
("s-<f2>" . visible-mode)))
#+end_src

** Virtualenvwrapper
Expand Down

0 comments on commit 1134d68

Please sign in to comment.