Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable arrow key navigation of the matches matrix #11

Merged
merged 1 commit into from Jul 28, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 7 additions & 0 deletions lusty-explorer.el
Expand Up @@ -957,12 +957,19 @@ does not begin with '.'."
(define-key map (kbd "RET") 'lusty-open-this)
(define-key map "\t" 'lusty-select-match)
(define-key map [remap delete-backward-char] 'lusty-delete-backward)

(define-key map "\C-n" 'lusty-highlight-next)
(define-key map "\C-p" 'lusty-highlight-previous)
(define-key map "\C-s" 'lusty-highlight-next)
(define-key map "\C-r" 'lusty-highlight-previous)
(define-key map "\C-f" 'lusty-highlight-next-column)
(define-key map "\C-b" 'lusty-highlight-previous-column)

(define-key map (kbd "<left>") 'lusty-highlight-previous-column)
(define-key map (kbd "<right>") 'lusty-highlight-next-column)
(define-key map (kbd "<up>") 'lusty-highlight-previous)
(define-key map (kbd "<down>") 'lusty-highlight-next)

(define-key map "\C-xd" 'lusty-launch-dired)
(define-key map "\C-xe" 'lusty-select-current-name)
(setq lusty-mode-map map))
Expand Down