-
-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Windows: Use / instead of \ in paths #2344
Comments
A workaround for this would be to specify a custom I had the same issue on my windows machine but if you have ripgrep there's a handy This is what I have for reference pickers = {
find_files = {
hidden = true,
find_command = {
'rg',
'--files',
'--color=never',
'--no-heading',
'--line-number',
'--column',
'--smart-case',
'--hidden',
'--glob',
'!{.git/*,.svelte-kit/*,target/*,node_modules/*}',
'--path-separator',
'/',
},
}
} |
I tried convert the |
The |
Typing \ when searching on Windows is really annoying, I would rather use forward slashes.
Describe the solution you'd like
A clear and concise description of what you want to happen.
There should be a way to make 'assets/image' search resolve 'assets\image'.
The text was updated successfully, but these errors were encountered: