Tencent / LuaHelper

LuaHelper is a High-performance lua VSCode plugin, Language Server Protocol for lua.
Other
588 stars 91 forks source link

需要一个禁用格式化时移动注释的选项 #206

Open KyuubiRan opened 4 weeks ago

KyuubiRan commented 4 weeks ago

版本:v0.2.26

local assets = { 
    -- 动画
    Asset("ANIM", "anim/myanimate.zip"), 

    -- 物品栏图标
    Asset("ATLAS", "images/inventoryimages/myitem.xml"), Asset("IMAGE", "images/inventoryimages/myitem.tex"), 

    -- 其他图标
    Asset("ATLAS", "images/other.xml"), Asset("IMAGE", "images/other.tex")
}

在格式化之后会变成

local assets = { 
    -- 动画
    Asset("ANIM", "anim/myanimate.zip"),  -- 物品栏图标
    Asset("ATLAS", "images/inventoryimages/myitem.xml"), Asset("IMAGE", "images/inventoryimages/myitem.tex"),  -- 其他图标
    Asset("ATLAS", "images/other.xml"), Asset("IMAGE", "images/other.tex")
}

这不符合预期 但是我在设置中没有找到格式化不移动注释的选项