-
-
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
LeaderfFile in project #137
Comments
Sorry, I can not quite understand your issue, could you describe in more detail? |
@Yggdroot updated |
This works as designed, because you have set Lines 457 to 474 in 559b80a
|
So what does |
The desired workflow for me is below:
Anyway to implement it? |
|
It does not. project organize as follow .
├── .git
└── src
├── a.py
└── b.py start from the root of the project
|
I think this is the bug of neovim(neovim/neovim#3636), does vim has the same behavior? |
Tested on vim, it works well. |
The patch for neovim/neovim#3636 has been merged, you can update neovim and have a try. |
I remove the |
I think the neovim you installed this way does not have the patch, you can install through compiling the source code. |
|
Perhaps this is a new bug of neovim, I'll try to find out what it is exactly and open an issue for neovim. |
I have opened an issue for neovim: neovim/neovim#8336. |
I see from the doc |
Fixed, please have a check. |
It is already fixed, thanks. |
vim --version
ornvim --version
::echo has("python")
: 0:echo has("python3")
: 1:echo &pythondll
(only vim, not neovim)::echo &pythonthreedll
(only vim, not neovim)::py print(sys.version)
::py3 print(sys.version)
:Steps to reproduce
project organization:
Run
vim a.py
insrc
, then runLeaderfFile
, try to findb.py
Actual behaviour
leaderf try to open
src/b.py
instead ofb.py
, which is invalid.Expected behaviour
open
b.py
The text was updated successfully, but these errors were encountered: