weirongxu / coc-explorer

📁 Explorer for coc.nvim
MIT License
1.14k stars 45 forks source link

[Feature] search full project #562

Closed jackielii closed 1 year ago

jackielii commented 1 year ago

Is your feature request related to a problem? Please describe. A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

When I'm at the explorer buffer, I often want to jump to some file, I want to search the whole workspace a file. I used F to search recursively but it only searches current node.

Describe the solution you'd like A clear and concise description of what you want to happen.

I have coc config:

    "F": ["cd:$workspaceRoot", "wait", "searchRecursive"]

But the "$workspaceRoot" part obviously didn't work. Is this supported? Is there an variable I can put here?

Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.

Additional context Add any other context or screenshots about the feature request here.

weirongxu commented 1 year ago
"explorer.keyMappings.global": {
    "F": ["resolveRoot", "gotoSource:file", "searchRecursive"]
 },