It seems to me that telekasten depends on ripgrep to search for tags.
Ripgrep by default respects .gitignore files. It would be very nice to have an option to be able to find tags in gitignored files and directories.
As far as I could see in the ripgrep docu it would do to pass -uuu to rg.
Namely, ripgrep won't search files ignored by your .gitignore/.ignore/.rgignore files, it won't search hidden files and it
won't search binary files. Automatic filtering can be disabled with rg -uuu.
Telescope allows to modify or define a new grep command.
Reference
telescope.defaults.vimgrep_arguments
Defines the command that will be used for live_grep and grep_string pickers.
Default: {
"rg",
"--color=never",
"--no-heading",
"--with-filename",
"--line-number",
"--column",
"--smart-case"
}
And also for find files to optionally find ignored files.
builtin.find_files({opts}) telescope.builtin.find_files()
Search for files (respecting .gitignore)
{no_ignore} (boolean) show files ignored by
.gitignore, .ignore, etc.
(default: false)
It seems to me that telekasten depends on ripgrep to search for tags.
Ripgrep by default respects .gitignore files. It would be very nice to have an option to be able to find tags in gitignored files and directories.
As far as I could see in the ripgrep docu it would do to pass -uuu to rg.
Telescope allows to modify or define a new grep command.
Reference
And also for find files to optionally find ignored files.