Helm: Tab Completion of Directory Paths

Created on 25 Oct 2016  路  3Comments  路  Source: emacs-helm/helm

Is there a way to change back behaviour of TAB completion in helm-find-files to traditional behaviour that completes directory names when navigating down directory tree.

Most helpful comment

C-j expands candidate, does C-j work for you? If it does, since there is nothing special about TAB as an key, you can bind it to any command, for example, (define-key helm-find-files-map "\t" 'helm-execute-persistent-action) to make TAB run C-j's command.

All 3 comments

C-j expands candidate, does C-j work for you? If it does, since there is nothing special about TAB as an key, you can bind it to any command, for example, (define-key helm-find-files-map "\t" 'helm-execute-persistent-action) to make TAB run C-j's command.

Yep, it does. Now I know. Thanks.

Thanks!

Was this page helpful?
0 / 5 - 0 ratings