-
-
Notifications
You must be signed in to change notification settings - Fork 181
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Why hidden directories and hidden files are displayed when I press <leader>f
?
#197
Comments
这也算是个bug吧,我fix了。 |
更新了, 确认了下, 现在 rg是什么意思, 就是我按他的记载安装就可以吗, 你这个插件到时候会自动调用rg来提高检索速度呗? |
奇怪,我这边 rg是一个类似grep的工具,但是比较快。只要安装成功(rg这个命令可用),LeaderF就会自动调用rg。 |
现在我这里是这样的:
Shell中执行这句话会出现
Shell中执行这句话不会出现
看起来似乎是没有正确执行到你想要执行的那条命令. 当然我觉得这个好像问题不大来着. |
哦,原来如此。 LeaderF/autoload/leaderf/python/leaderf/fileExpl.py Lines 207 to 373 in 30f50eb
|
vim --version
ornvim --version
::echo has("python")
:1
:echo has("python3")
:0
:echo &pythondll
(only vim, not neovim):libpython2.7.so.1.0
:echo &pythonthreedll
(only vim, not neovim):nothing
:py print(sys.version)
::py3 print(sys.version)
:nothing
:echo g:Lf_Debug_Cmd
:find "." -name . -o -type f -print 2>/dev/null | sed 's#^\./##'
Describe your question, feature request, or bug.
vim
in terminal, then press<leader>f
. this is the output:<c-p>
, this is what CtrlP output:I think LeaderF's output is strange. I don't want to see something like
.cache/XXXX
or.git/XXXX
when I press<leader>f
. It seems CtrlP's output is more accetpable. Is this a bug? Or just something I haven't set up correctly?hi, 我就是前几天在知乎评论问问题那个, 今天终于可以把问题详细的整理成issue了. 感觉每次使用
<leader>f
的时候出来那堆隐藏文件夹下的东西看着挺别扭的, 不知道是刻意为之还是就是有bug? 而且通常情况下, 我文件夹里都会有比如.gitignore
文件, 在使用<c-p>
的时候他并不会默认显示出来, 但是<leader>f
的时候会显示出来. 总感觉这些隐藏文件不显示似乎更符合直觉来着.Steps to reproduce
see Describe your question, feature request, or bug.
Actual behaviour
see Describe your question, feature request, or bug.
Expected behaviour
see Describe your question, feature request, or bug.
The text was updated successfully, but these errors were encountered: