How to have emacs-helm list offer files in current directory as options? -


What is the list of files in the existing directory in the list from helm-mini are part of the potential search matches ?

You will be defined as helm-mini as such:

  (defun helm-mini) "pre-configuration 'helm' lightweight version (buffer -> gt; html)." (Interactive) (helm-other-buffer 'C-source-buffers-list helm-c-source-recentf helm-c-source-buffer-not-found) "* helm mini *"))   

Therefore it only calls a list of sources very easy to add to any existing source.

enabled run ch v helm-c-source files (note space) and you should find: < / P>

helm-c-source-files-in-current-dir

Then create your own helm command which you need:

  (defun helm-my-buffers () (interactive) (helm-other-buffer '(helm-c-source-buffers-list helm-c-source) -file-in-current-dial Helm-c-source-recent helm-c-source-buffer-non-power) "* Helm-my-buffers *"))   

Check for other sources Helm-for-files-prefered-list Exclude Ribhasha, which may interest you and use the Help system to find new gifts.

Comments