help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: A package in a league of its own: Helm


From: Tak Kunihiro
Subject: Re: A package in a league of its own: Helm
Date: Wed, 03 Sep 2014 08:15:03 +0900 (JST)

You can reassign <tab> only during `helm-find-file'.  The
`helm-find-file' almost looks like Dired and I assign "^" for going
up.  Minor side effect is you cannot type in "^" without using C-q.

Sometimes you want to hit <tab> for `helm-selection-action'; however,
you chose not to happen.  Now look for substitute for <tab>.
Something not <tab> can be "C-z", "C-<tab>", and "<SPC>.


(define-key helm-find-files-map (kbd "<tab>")    
'helm-execute-persistent-action)
(define-key helm-find-files-map (kbd "C-<tab>")  'helm-select-action)
(define-key helm-find-files-map (kbd "C-z")      'helm-select-action)
(define-key helm-find-files-map (kbd "<SPC>")    'helm-select-action)
(define-key helm-find-files-map (kbd "<return>") 
'helm-confirm-and-exit-minibuffer)
(define-key helm-find-files-map (kbd "^")        'helm-find-files-up-one-level)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]