How to select the source of displa #2478
Replies: 2 comments 1 reply
-
Follow up: Setting up
and running |
Beta Was this translation helpful? Give feedback.
0 replies
-
sprig ***@***.***> writes:
I'm happy with how each source works separately from the others. My
problem is that helm reorders the sources such that candidates from
helm-source-files-in-current-dir show above helm-source-git, and I do
not understand why.
What am I missing?
Async sources when called go in background (just like any async process
started with start-process) and the next source is called, if this
source is synchronous, Emacs is waiting it to finish and display it,
when all sync sources are done the async one popup, if there is more
than 1 async source, the faster one wins.
PS: Have a look at helm-ls-git package.
…--
Thierry
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sprig
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I have the following expanded
helm-mini
(I know that I can also rearrange sources for the standardhelm-mini
, but this is not what I need):Pretty simple stuff.
helm-source-f-*
is basically likefind <DIR>|grep helm-pattern
for the appropriate dir.helm-source-git
is similar, except it works for git-committed files. Definition ofhelm-source-git
:I'm happy with how each source works separately from the others. My problem is that
helm
reorders the sources such that candidates fromhelm-source-files-in-current-dir
show abovehelm-source-git
, and I do not understand why.What am I missing?
Beta Was this translation helpful? Give feedback.
All reactions