earshinov / vscode-filter-lines

Extension for Visual Studio Code allowing to quickly find all lines matching a string or regular expression
https://marketplace.visualstudio.com/items?itemName=earshinov.filter-lines
MIT License
13 stars 3 forks source link

command 'filterLines.filterLines' not found #11

Closed yihualu closed 1 year ago

yihualu commented 3 years ago

when I was trying to create a key binding, got "command 'filterLines.filterLines' not found" while "filterlines.promptFilterLines" works.

earshinov commented 3 years ago

Hmm... Seems to be working for me with this shortcut configuration:

{
    "key": "ctrl+alt+shift+z",
    "command": "filterlines.filterLines",
    "args": {
        "needle": "test",
    },
    "when": "editorTextFocus"
}
earshinov commented 1 year ago

Closing as stale