LuaLS / LuaLS/vscode-lua

Fix Indent affecting lines incorrectly

未關閉
#169 0 則留言 0 個 reaction 已指派 0 人 在 GitHub 檢視

還沒有人認領這個 Issue。

主要語言
TypeScript
星號
215
分支
62
PR 合併指標
30 天內沒有已合併 PR

描述

Which OS are you using?

Windows

Expected Behaviour

Writing local ret = Button:new(text, x, y) and then putting in a new line before text, to change the arguments to a vertical list, un-indents at text. That is, the result is

Button:new(
text, x, y)
Actual Behaviour

The result should be

Button:new(
    text, x, y)
Reproduction steps
  • Write a function with an argument
  • Break before the argument
Additional Notes

The behaviour is as expected if Fix Indent is off. However I believe the point is for other cases like strings, to get

"I went to a function
the other day"

and not

"I went to a function
    the other day"

I'm not exactly sure what the point of the option is. I assume it doesn't apply to every time vscode indents code, but I think the set it's supposed to apply to probably shouldn't apply to the function(arg) case.

Log

No response

貢獻指南

這個儲存庫沒有索引到貢獻指南

從這裡開始

  1. 先讀完整個 Issue,再讀專案的貢獻指南。
  2. 在 Issue 下留言說明你要接手 —— 這能避免兩個人做同樣的事。
  3. Fork 儲存庫,在一個分支上完成修改。
  4. 送出 Pull Request,並在描述裡引用這個 Issue 編號。

研究方向

首先,在啟用 Fix Indent 的 VSCode Lua extension 中重現回報的行為:在 Lua 函式呼叫中的引數前換行,並將其與多行字串進行比較。追蹤縮排處理的進入點,並為這兩種情況新增覆蓋;完成的標準是引數仍保持縮排,而字串續行不會被錯誤地縮排。

由索引模型根據 Issue 內容生成。

評估

技術堆疊
lua, typescript
領域
tooling
Issue 類型
缺陷
難度
3/5
預估耗時
1-2 天
活躍度
停滯
描述清晰度
基本清楚
新手友好度
35/100

把新 issue 寄到你的電子郵件信箱

精選適合新手參與的 GitHub issue 摘要。