https://github.com/brokenprogrammer/paragraphjump
ParagraphJump allows the user to navigate swiftly between paragraphs.
https://github.com/brokenprogrammer/paragraphjump
keybindings vscode vscode-extension
Last synced: about 2 months ago
JSON representation
ParagraphJump allows the user to navigate swiftly between paragraphs.
- Host: GitHub
- URL: https://github.com/brokenprogrammer/paragraphjump
- Owner: brokenprogrammer
- Created: 2015-12-19T00:32:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-07-19T00:20:41.000Z (almost 2 years ago)
- Last Synced: 2024-04-21T18:59:00.497Z (about 1 year ago)
- Topics: keybindings, vscode, vscode-extension
- Language: TypeScript
- Homepage:
- Size: 3.8 MB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# ParagraphJump
ParagraphJump allows the user to navigate swiftly between paragraphs.
## Features
* `paragraphjump.up`: Move up a paragraph
* `paragraphjump.down`: Move down a paragraph
* `paragraphjump.selectup`: Select one paragraph up
* `paragraphjump.selectdown`: Select one paragraph down## Gettings started
This plugin will automatically be enabled after using one of the commands specified above.
### Keyboard shortcuts
To optimally use this plugin it is recommended to re-map your keybindings. You can do this through the **Keyboard Shortcuts** editor available
through the **Preferences** -> **Keyboard Shortcuts** menu.My personal bindings for this plugin is displayed below as an example:
```JSON
{
"key": "ctrl+up",
"command": "paragraphjump.up",
"when": "textInputFocus"
},
{
"key": "ctrl+down",
"command": "paragraphjump.down",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+down",
"command": "paragraphjump.selectdown",
"when": "textInputFocus"
},
{
"key": "ctrl+shift+up",
"command": "paragraphjump.selectup",
"when": "textInputFocus"
}
```## Changelog
The changelog can be viewed [here](CHANGELOG.md).