(mini.pick) - how to pick files from specific directory? #642
-
|
Beta Was this translation helpful? Give feedback.
Answered by
echasnovski
Jan 5, 2024
Replies: 1 comment
-
Every source can have "current working directory". So with If you plan to do that often interactively, you can modify |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mainendra
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Every source can have "current working directory". So with
builtin.files()
you can doMiniPick.builtin.files(nil, { source = { cwd = '../foo/bar' } })
.If you plan to do that often interactively, you can modify
files
in registry and use:Pick files cwd='../foo/bar'
.