Skip to content

Commit

Permalink
fix: <C-j> not join line in normal mode, <C-k> not delete all right w…
Browse files Browse the repository at this point in the history
…ords
zykowal committed Jan 8, 2025
1 parent e6bb4ce commit 27eba2e
Showing 2 changed files with 60 additions and 0 deletions.
50 changes: 50 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -145,6 +145,56 @@ MIT

zykowal - [GitHub](https://github.com/zykowal)

## Acknowledgments

**Work with other plugins to get more powerful 🚀**

- [Toggle Boolean](https://marketplace.visualstudio.com/items?itemName=silesky.toggle-boolean)

```json
{
"before": ["leader", "i"],
"commands": ["extension.toggleBool"]
}
```

- [Bookmarks](https://marketplace.visualstudio.com/items?itemName=alefragnani.bookmarks)

```json
{
"before": [ "leader", "m", "a" ],
"commands": [ "bookmarks.toggle" ]
},
{
"before": [ "leader", "m", "l" ],
"commands": [ "bookmarks.list" ]
},
{
"before": [ "leader", "m", "L" ],
"commands": [ "bookmarks.listFromAllFiles" ]
},
{
"before": [ "leader", "m", "c" ],
"commands": [ "bookmarks.clear" ]
},
{
"before": [ "leader", "m", "C" ],
"commands": [ "bookmarks.clearFromAllFiles" ]
},
{
"before": [ "leader", "m", "r" ],
"commands": [ "bookmarks.refresh" ]
},
{
"before": [ "[", "m" ],
"commands": [ "bookmarks.jumpToPrevious" ]
},
{
"before": [ "]", "m" ],
"commands": [ "bookmarks.jumpToNext" ]
}
```

## Contributing

Feel free to submit issues and enhancement requests on the GitHub repository.
10 changes: 10 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -308,6 +308,16 @@
"command": "showPrevParameterHint",
"when": "editorFocus && parameterHintsMultipleSignatures && parameterHintsVisible"
},
{
"key": "ctrl+j",
"command": "-editor.action.joinLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k",
"command": "-deleteAllRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "o",
"command": "revealReference",

0 comments on commit 27eba2e

Please sign in to comment.