An extension to let me do language-specific visual mode find and replace keybinds
An example rebind command in the vim.visualModeKeyBindings
{
"before": [",", "r", "q"],
"commands": [
{
"command": "vimReplace.replaceInSelection",
"args": {
"find": "\"",
"replace": "'",
"flags": "g",
"languageId": "python"
}
}
]
}
This relies on the Vim extension in VS Code obviously
If you have any requirements or dependencies, add a section describing those and how to install and configure them.