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

FormatLua

denglf ALL

通过使用 Lua 开发工具库来格式化 Lua 代码,使其更易读。

详情

  • 0.1.2
  • github.com
  • github.com
  • 10年前
  • 47分钟前
  • 10年前

安装

  • 总计 17K
  • Win 12K
  • Mac 4K
  • Linux 1K
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 2 0 0 0 0 1 0 0 0 3 1 1 1 0 0 1 0 1 1 0 0 0 4 1 0 2 1 0 0 0 0 1 0 0 0 0 1 2 1 0 0 1
Mac 1 2 0 0 0 1 0 0 0 0 0 0 1 2 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 1 0 1 0 1 0 0 0 1 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 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

概要

FormatLua 使用 Lua 开发工具库 将 Lua 代码格式化为更易读的形式。

需求

  • Lua

支持系统

  • MacOSX
  • Linux

如何使用

  • 选择 Lua 代码并点击菜单 选择 -> 格式 -> 格式化 Lua 代码
  • 选择 Lua 代码并按 alt+l

配置设置

在 FormatLua.sublime-settings 中设置 lua 路径

{
    "lua_path": "/usr/local/bin/lua"
}

配置键盘快捷键

添加以下行到键映射设置

{ "keys": ["alt+l"], "command": "format_lua" }

示例

原文

local a = "你好"
    local b
    function set_text(name, value)
            local doc = document:getElementsByName(name)
        if doc and #doc > 0 then
        doc[1]:setPropertyByName("text", value)
    end
    end
    return b

格式化过的

local a = "你好"
local b
function set_text(name, value)
    local doc = document:getElementsByName(name)
    if doc and #doc > 0 then
        doc[1]:setPropertyByName("text", value)
    end
end
return b