nvim search hidden files also - neovim

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.

Related

Recursive file search in Jupyter Lab

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?

Hide Files In VScode

I don't want to show the files in VScode which are already hidden i.e starts file name with '.'
in ubuntu filename start with '.' are hidden but whenever i open any folder in VScode that hidden files also showing.. so can some one tell me how can hide files in VScode which name starts with '.' ?
open vscode
go file-preferneces-settings-Text Editor-files
click add pattern bellow "Files:exclude"
Add what you want to be hidden in a .gitignore file local to your project.
In VSCode settings, look for: "Explorer: Exclude Git Ignore".
Tick the box.
In this way, you minimize the settings specific to your current IDE, and rely on what is specified in your project.

Folder Favorites

I am looking for an extension or feature in VSCode that will bookmark folders for me. I have a number of folders I continually work on and would like to open them up quickly. The option of opening folders them in another instance of VSCode would be optimal.
You are looking for CTRL-R which presents a list of recent folders and files.
CTRL-ENTER on the folder or file will open a new Vscode instance.
First, you could install favorites library on your vscode as shown in it's site for add folder/file to the favorites
Second, it's easiest way to search a file by ctrl+p

NetBeans doesn't show git ignore files

I can't see my project's .gitignore files within my netbeans program.
Is there a way to make them appear within the list of files? I could not find a way.
Open the NetBeans Options
Click on the 'Files' tab
Under 'Ignored Files Pattern', the default is:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htaccess$).*$
This means that, by default, NetBeans ignores all files beginning with '.' except for .htaccess
You can update this regex to the following to also exclude .gitignore:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!(htaccess|gitignore)$).*$
Click OK, and NetBeans will immediately begin displaying your .gitignore files.

NetBeans - Display .gitignore Files in Projects/Files

By default, NetBeans does not show .gitignore files inside it's Projects/Files lists.
How do I get them to show up?
I'd like to see them, since NetBeans has no issue actually editing these files.
Open the NetBeans Options
Click on the 'Files' tab
Under 'Ignored Files Pattern', the default is:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!htaccess$).*$
This means that, by default, NetBeans ignores all files beginning with '.' except for .htaccess
You can update this regex to the following to also exclude .gitignore:
^(CVS|SCCS|vssver.?\.scc|#.*#|%.*%|_svn)$|~$|^\.(?!(htaccess|gitignore)$).*$
Click OK, and NetBeans will immediately begin displaying your .gitignore files.