Emacs: Add C-x F for find-file, C-x C-S-f doesn't work in terminals.
This commit is contained in:
parent
a67c9958be
commit
8dda526768
|
@ -1,6 +1,6 @@
|
||||||
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
|
;;; input.el --- Configure behaviour of input devices. -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
;; Time-stamp: <2020-03-29T21:49:39+0200>
|
;; Time-stamp: <2020-03-29T22:58:40+0200>
|
||||||
|
|
||||||
;;; Commentary:
|
;;; Commentary:
|
||||||
;; * Setup mouse & keyboard behaviour.
|
;; * Setup mouse & keyboard behaviour.
|
||||||
|
@ -64,7 +64,8 @@ With ARG, do it that many times."
|
||||||
;; Insert next character with control characters.
|
;; Insert next character with control characters.
|
||||||
("C-S-v" . quoted-insert)
|
("C-S-v" . quoted-insert)
|
||||||
;; C-x C-f will be replaced with projectile-find-file.
|
;; C-x C-f will be replaced with projectile-find-file.
|
||||||
("C-x C-S-f" . find-file))))
|
("C-x C-S-f" . find-file)
|
||||||
|
("C-x F" . find-file)))) ; Workaround for terminals.
|
||||||
|
|
||||||
; Multiple cursors.
|
; Multiple cursors.
|
||||||
(use-package multiple-cursors
|
(use-package multiple-cursors
|
||||||
|
|
Loading…
Reference in New Issue
Block a user