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

按行分隔的列表

作者: jeechu 所有

将按行分隔的文档转换为列表的Sublime Text软件包

详细信息

安装

  • 总计 340
  • Win 188
  • Mac 110
  • Linux 42
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0
Mac 1 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

读我

源代码
raw.​githubusercontent.​com

NewlineSeparatedToList for Sublime Text 3

此软件包简化了将按行分隔的文档(或文档选择)转换为列表的过程。

设置

ask_for_bracket_type设置为falsedefault_bracket_type以避免每次都选择括号类型。

注意:设置ask_for_bracket_type但未设置default_bracket_type仍然会显示选择括号的提示。

{
    "ask_for_bracket_type": false,
    "default_bracket_type": "curved"
  }

支持的括号类型

括号类型 示例
曲线 ( )
方块 [ ]
曲线 { }

用法

工具 -> 命令板(Ctrl+Shift+P或Cmd+Shift+P)

选项:* 按行到列表:双引号 - 向列表中的每个项目添加双引号,转义任何现有的双引号 * 按行到列表:无引号 - 不添加引号 * 按行到列表:单引号 - 向列表中的每个项目添加单引号,转义任何现有的单引号 * 按行到列表:动态双引号 - 向列表中的每个非数字项目添加双引号,转义任何现有的双引号 * 按行到列表:动态单引号 - 向列表中的每个非数字项目添加单引号,转义任何现有的单引号

示例

one
  two
  three
  4
  five

  # Becomes (with square brackets)
  ["one", "two", "three", "4", "five"]    #with double quotes
  [one, two, three, 4, five]              #with no quotes
  ['one', 'two', 'three', '4', 'five']    #with single quotes
  ["one", "two", "three", 4, "five"]      #with dynamic double quotes
  ['one', 'two', 'three', 4, 'five']      #with dynamic single quotes
one
  two
  three
  4
  five

  # Becomes (with no brackets)
  "one", "two", "three", "4", "five"      #with double quotes
  one, two, three, 4, five                #with no quotes
  'one', 'two', 'three', '4', 'five'      #with single quotes
  "one", "two", "three", 4, "five"        #with dynamic double quotes
  'one', 'two', 'three', 4, 'five'        #with dynamic single quotes