Skip to content

Commit

Permalink
Fix some bindings (#2082)
Browse files Browse the repository at this point in the history
Surely not needed but well...
  • Loading branch information
Thierry Volpiatto committed Aug 24, 2018
1 parent 6505cba commit ad5e8d4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion helm-buffers.el
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Note that this variable is buffer-local.")
(define-key map (kbd "M-a") 'helm-mark-all)
(define-key map (kbd "C-]") 'helm-toggle-buffers-details)
(define-key map (kbd "C-c a") 'helm-buffers-toggle-show-hidden-buffers)
(define-key map (kbd "<C-M-SPC>") 'helm-buffers-mark-similar-buffers)
(define-key map (kbd "C-M-SPC") 'helm-buffers-mark-similar-buffers)
map)
"Keymap for buffer sources in helm.")

Expand Down
2 changes: 1 addition & 1 deletion helm-files.el
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@ NOTE that `helm-list-dir-external' needs ls and awk as dependencies."
(let ((map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "<C-return>") 'helm-cr-empty-string)
(define-key map (kbd "<M-RET>") 'helm-cr-empty-string)
(define-key map (kbd "M-RET") 'helm-cr-empty-string)
(define-key map (kbd "C-]") 'helm-ff-run-toggle-basename)
(define-key map (kbd "C-.") 'helm-find-files-up-one-level)
(define-key map (kbd "C-l") 'helm-find-files-up-one-level)
Expand Down
2 changes: 1 addition & 1 deletion helm-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ know what you are doing."
(let ((map (make-sparse-keymap)))
(set-keymap-parent map helm-map)
(define-key map (kbd "<C-return>") 'helm-cr-empty-string)
(define-key map (kbd "<M-RET>") 'helm-cr-empty-string)
(define-key map (kbd "M-RET") 'helm-cr-empty-string)
map)
"Keymap for `helm-comp-read'.")

Expand Down

0 comments on commit ad5e8d4

Please sign in to comment.