diff options
author | William Carroll <wpcarro@gmail.com> | 2020-02-18T11·01+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-02-18T11·09+0000 |
commit | 6f179afd4940ac7c079585785865bc0e9f0b8719 (patch) | |
tree | d13342646cfcc81ec25f2cfd133481508a8523ff /emacs | |
parent | 159301da50ae89a041eff293a5d0c15755ac0e4b (diff) |
Define KBD for find-file-at-point (i.e. ffap)
I'm attempting to incorporate the beloved find-file-at-point function into my workflow.
Diffstat (limited to 'emacs')
-rw-r--r-- | emacs/.emacs.d/wpc/keybindings.el | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/emacs/.emacs.d/wpc/keybindings.el b/emacs/.emacs.d/wpc/keybindings.el index 116c1e638b96..cdc99af557ca 100644 --- a/emacs/.emacs.d/wpc/keybindings.el +++ b/emacs/.emacs.d/wpc/keybindings.el @@ -47,6 +47,11 @@ (keybinding/exwm "<C-M-tab>" #'exwm/switch-to-exwm-buffer) +(general-define-key + :prefix "<SPC>" + :states '(normal) + "." #'ffap) + ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; Vterm ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |