Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.23 KB

README.md

File metadata and controls

48 lines (37 loc) · 1.23 KB

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:

    {
        "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.