Closed silgon closed 3 years ago
d58004c restore ffip-prefer-ido-mode (Chen Bin)
Nice. I installed the update from melpa
. It seems to work.
I have to reopen the issue since I realize that when I open a file, I'm not redirected to the correct path when I'm not working in the root directory of my project.
Example: for project with name project
in directory /path/to/my/project/
. If I'm working in my file /path/to/my/project/folder1/myfile.txt
, then I want to open otherfile.txt
that is in /path/to/my/project/folder1
, find-file-in-project
will give me the correct path of my otherfile.txt
however, when I ask to open it will try to open /path/to/my/project/folder1/folder2/otherfile.txt
.
where folder2
comes from. I need exact steps. What command you use to find&open file?
Sorry. I though I write that in the description. folder1
and folder2
are inside my project on the root directory. So, the tree
command on the root would give me the following:
├── folder1
│ └── myfile.txt
└── folder2
└── otherfile.txt
Plus the git
configuration folders.
2f44af3 ido and other completion frameworks share same code (Chen Bin)
Some days ago I decided to update a lot of things in my emacs configuration and packages. However I ran into troubles with
find-file-in-project
. I usedfind-file-in-project
with ido mode (using(setq ffip-prefer-ido-mode t)
in my init file). When I use the command I seeFind in myproject/:
But I don't see any files or whatsover, so, ido-mode doesn't work I suppose because of this (not sure).
I decided to set:
And I get the following at every search:
Which should be the normal search, If I launch it on my bash terminal, that command doesn't seem to have a problem.
Some of my ido configuration:
Any thoughts? thanks in advance.
I'm using
GNU Emacs 26.3
onxubuntu 20.04
.