emacs

Consider also joining #cider, #lsp and #inf-clojure, where most of the tool-specific discussions are happening.
Janne Sauvala 2021-06-27T15:36:15.085500Z

Does someone happen to know a good alternative to ‘counsel-file-jump’ that would list all files in the current dir or project (recursively including files in subdirs) in the minibuffer and would allow me to switch to files listed in there? I’m fiddling with Ivy and Counsel alternatives (Vertigo and Consult) but I noticed I’m missing that handy function now

dpsutton 2021-06-27T15:45:47.085900Z

projectile-find-file is what i use

Janne Sauvala 2021-06-27T15:50:05.088100Z

Thanks Dan, I think I tried that one already but I didn’t see that kind of results I was hoping for. I could have some weird things in my configs that prevented me to see this - let me double check

jumar 2021-06-27T16:39:58.088200Z

The gotcha is that, at least in Spacemacs, the file list gets cached and so it doesn't find new files added by team members (e.g. when I update my local branch or switch branches) So I sometimes have to call projectile-invalidate-cache manually

Janne Sauvala 2021-06-27T18:43:16.089500Z

It seems projectile-find-file didn’t do what I was after. First one is the list from projectile-find-file and the second one is from counsel-find-file

Janne Sauvala 2021-06-27T18:51:35.091300Z

Interesting, I switched to some other project and there the projectile-find-file lists files under subdirs. I’m not sure what is happening here 😄

Janne Sauvala 2021-06-27T18:57:55.093400Z

It seems projectile-find-file uses .gitignore to filter results. That is why I cannot see those files under straight folder since I have ignored them. That is pretty handy