ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Markdown​Complements

by junShimoji ALL

Markdown complements for sublime text 3

Details

Installs

  • Total 10K
  • Win 5K
  • Mac 3K
  • Linux 2K
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 0 1 2 3 1 2 0 0 2 0 1 0 1 2 1 3 3 0 0 2 2 3 0 1 1 0 0 0 1 0 0 0 2 0 0 0 0 2 1 3 0 0 2 1
Mac 2 0 1 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0 0 1
Linux 1 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0

Readme

Source
raw.​githubusercontent.​com

Markdown complements

Easy indenting of Markdown lists.

  • This plugin provides functions to complement a markdown list item making/changing or indent up/down.
  • Need to set Key Bindings only.
  • No need to care extensions(.md,.mdown,.txt or something like that).
  • Can change list items manually not connected with indent levels.
  • Can prevent conflicting with Japanese Input method that selected characters are disappearing.

Sublime Text Version

The plugin requires Sublime Text 3.

Installation

You can clone this repository into your Sublime Text “Packages” folder.

MacOS:

cd ~/"Library/Application Support/Sublime Text 3/Packages"
git clone https://github.com/junShimoji/markdowncomplements.git MarkDownComplements

Windows:

cd "%APPDATA%\"Sublime Text 3\Packages"
git clone https://github.com/junShimoji/markdowncomplements.git MarkDownComplements

Settings

There are 5 plug-ins.

  1. markdown_indent_down

If the focus line has a list item(*,+ or -), then you can indent down. If the focus line has no list item(*,+ or -), you can add a list item automatically.

  1. markdown_indent_up

If the line has a list item(*,+ or -), it indent up.

  1. markdown_new_line

It provides new line with a list item.

  1. markdown_rotate_list_item

If a list item(*,+ or -) exists, the list item lotates like * -> + -> - * ….

Use as follows.

Open Preferences > Key Bindings and add as follows:

{ 
    "keys": ["ctrl+enter"], "command": "markdown_indent_down",
    "context": [{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }]
},
{ "keys": ["ctrl+shift+enter"], "command": "markdown_indent_up" },
{ "keys": ["command+enter"], "command": "markdown_new_line" },
{ "keys": ["shift+enter"], "command": "markdown_rotate_list_item" }

Above “context” should be added if neceesary.

  1. outline to table

It provides outline to markdown table.

  • To make table header, use list item +.
  • To make table contents, use list item -.
  • Select texts which include headers and contents.
  • Open palette and input 'outline to table.'

example

before)

+ header1
    + header2
        + header3

- content1
    - content2
- content3
    - content4

after)

|header1|header2|header3|
|-|-|-|
|content1|content2|
|content3|content4|