[Delete-ft]
quick delete function that support javascript and typescript
Installation
- Click on the Extensions icon (usually on the left-hand side of your editor).
- Search for "Delete Function".
- Find the extension in the list and click the install button.
Usage
- Through the Command Palette.
- Through the shortcut
- default shortcut
- mac "cmd + r + f"
- win "ctrl + r + f"
// settings.json
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": [
"<space>",
"d",
"f"
],
"commands": [
"delete-ft.deleteFunction"
]
}
]
| |