diff --git a/data/user_workspaces/admin/src/mytest/1.json b/data/user_workspaces/admin/src/mytest/1.json deleted file mode 100644 index e69de29..0000000 diff --git a/data/user_workspaces/admin/src/mytest/q b/data/user_workspaces/admin/src/mytest/q deleted file mode 100644 index e69de29..0000000 diff --git a/editor/editors.go b/editor/editors.go index f9322b6..c01005f 100644 --- a/editor/editors.go +++ b/editor/editors.go @@ -23,9 +23,9 @@ var editorWS = map[string]*websocket.Conn{} // 代码片段. 这个结构可用于“查找使用”、“文件搜索”的返回值. type snippet struct { Path string `json:"path"` // 文件路径 - Line int `json:"lline"` // 行号 + Line int `json:"line"` // 行号 Ch int `json:"ch"` // 列号 - Contents []string `json:"contents"` // 代码行 + Contents []string `json:"contents"` // 附近几行 } // 建立编辑器通道.