On the left-side bar in Jupyter Lab, I can search for a file in the current directory
However, I have to be in the exact folder to find a file.
I would like to search for the file recursively, or alternatively search through all files in the root directory. In this example, I would like to find file.txt even when searching from folder
Can this be done?
Related
https://github.com/neoclide/coc.nvim
I have been using COC to find files. However, it starts searching for the files inside the node_modules file making it impossible for me to find the files that I am actually working on.
I would like to search into my directories hidden files also.
If I search a file called for example .gitignore it can't be opened because I can't see it in my file list.
This is my configuration to open files into my init.vim
nnoremap <c-p> :Files<cr>
How can I search hidden files also?
I don't want a solution like: use NerdTree plugin, please.
In using file filter in VSCode How to search for just a specific file type in Visual Studio code? does in fact include folder
*.py will also include folders myfolder.py : is it possible to exclude folders ?
It isn't clear to me exactly what you are trying to do, but if you want to include *.py files but exclude folders like something.py this seems to work:
files to include: *.py
files to exclude: *.py/*
Using that you will not get search hits from folder.py/file.py
but you will from anotherFile.py that is not in the folder.py.
This should not be too hard: I've got the path of a file relative to my project root (e.g. copied from the console: src/main/java/org/hello/World.java) and want to open this file in eclipse. I can't find how to do this.
I can open a resource and give it "world.java", but I might have many world.java files and I already have the full path in my clipboard so why start searching again.
Use Ctrl+Shift+R and put */ in front of the path (i.e. type Ctrl+Shift+R*/Ctrl+V)
I was adding a simple file to one of my programs that updates when I run the program with a particular parameter.
The file updated fine, but it is stored in the /bin directory and I can't figure out how to view the file within the editor.
I can see that the file is updated when I traverse the bin folder manually and open it with notepad.
Is there a way to view the file within the editor?
edit: I have a file in the project already but I doesn't update, instead the copy in the bin folder does; Can I connect the two somehow?
Your <project>/bin directory is being filtered from view. Right click on your project, select Show In->Navigator then you should be able to see your /bin directory and double click your file to have it open in an editor.
Alternatively, you can use ctrl-shift-r to open the Open Resource dialog, from the triangle drop down menu check Show Derived Resources, and then type in the name of your file.
The /bin directory is managed by the Eclipse builders and so you may lose your file if you do a clean. I would suggest using a different directory to house your runtime files.