ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

Markdown补全

junShimoji 全部

Sublime Text 3的Markdown补全

详细信息

  • 0.5.0
  • github.com
  • github.com
  • 6年前
  • 1小时前
  • 6年前

安装数

  • 总数 10K
  • Win 5K
  • Mac 3K
  • Linux 2K
2023年8月6日 2023年8月5日 2023年8月4日 2023年8月3日 2023年8月2日 2023年8月1日 2023年7月31日 2023年7月30日 2023年7月29日 2023年7月28日 2023年7月27日 2023年7月26日 2023年7月25日 2023年7月24日 2023年7月23日 2023年7月22日 2023年7月21日 2023年7月20日 2023年7月19日 2023年7月18日 2023年7月17日 2023年7月16日 2023年7月15日 2023年7月14日 2023年7月13日 2023年7月12日 2023年7月11日 2023年7月10日 2023年7月9日 2023年7月8日 2023年7月7日 2023年7月6日 2023年7月5日 2023年7月4日 2023年7月3日 2023年7月2日 2023年7月1日 2023年6月30日 2023年6月29日 2023年6月28日 2023年6月27日 2023年6月26日 2023年6月25日 2023年6月24日 2023年6月23日 2023年6月22日
Windows 1 1 0 0 1 1 0 2 2 1 0 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
Mac 2 2 0 0 0 0 0 0 2 0 1 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
Linux 0 0 0 0 2 0 0 0 0 1 0 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

README

源代码
raw.githubusercontent.com

Markdown补全

轻松缩进Markdown列表。

  • 此插件提供了一系列功能,用于补全、更改Markdown列表项的缩进。
  • 只需设置键绑定即可。
  • 无需关心扩展名(.md、.mdown、.txt等)。
  • 可以手动更改列表项,而不考虑缩进层次。
  • 可以防止与日文输入法冲突,避免选中的字符消失。

Sublime Text版本

插件需要Sublime Text 3。

安装

您可以将此存储库克隆到Sublime Text的“Packages”文件夹中。

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

设置

共有5个插件。

  1. markdown_indent_down

如果焦点行有一个列表项(*、+或-),则可以进行缩进。如果焦点行没有列表项(*、+或-),则可以自动添加列表项。

  1. markdown_indent_up

如果行中有列表项(*、+或-),则可缩进。

  1. markdown_new_line

提供带有列表项的新行。

  1. markdown_rotate_list_item

如果列表项(*、+或-)存在,则列表项将循环旋转,例如 * -> + -> - * …。

使用方法如下。

打开首选项 > 密钥绑定并添加如下

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

如有必要,请在上面的“上下文”中添加。

  1. 目录到表格

提供将目录转换为Markdown表格的功能。

  • 为创建表格标题,请使用列表项 +
  • 为创建表格内容,请使用列表项 -
  • 选择包含标题和内容文本。
  • 打开调色板并输入 '目录到表格'。

示例

之前)

+ header1
    + header2
        + header3

- content1
    - content2
- content3
    - content4

之后)

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