diff --git a/index.css b/index.css index 6dbe025e..4018ed6f 100644 --- a/index.css +++ b/index.css @@ -28,6 +28,7 @@ fieldset>div.action>div.item { margin-right:10px; height:32px; } fieldset.input>legend { display:none; } fieldset.input.key div.action { display:none; } fieldset.input.key div.status { display:block; position:sticky; bottom:0; } +fieldset.input.key div.output table.content { width:100%; } fieldset.input.key.simple th { display:none; } fieldset.input.key.simple td { min-width:40px; } fieldset.input.date table.content { text-align:center; width:350px; } diff --git a/plugin/local/code/vimer.js b/plugin/local/code/vimer.js index a3feef85..22eba190 100644 --- a/plugin/local/code/vimer.js +++ b/plugin/local/code/vimer.js @@ -109,7 +109,7 @@ Volcanos(chat.ONACTION, {list: ["编译", "源码", "终端", "文档", "计划" }) }, "编译": function(event, can) { can.onaction.compile(event, can, code.COMPILE) }, "源码": function(event, can) { can.onimport.tabview(can, "", web.CODE_GIT_STATUS, ctx.INDEX) }, - "终端": function(event, can) { can.onimport.tabview(can, "", [web.CODE_XTERM, "sh"].join(mdb.FS), ctx.INDEX) }, + "终端": function(event, can) { can.onimport.tabview(can, "", [web.CODE_XTERM, "ish"].join(mdb.FS), ctx.INDEX) }, "文档": function(event, can) { can.onimport.tabview(can, "", web.WIKI_WORD, ctx.INDEX) }, "计划": function(event, can) { can.onimport.tabview(can, "", web.TEAM_PLAN, ctx.INDEX) }, "桌面": function(event, can) { can.onimport.tabview(can, "", "web.chat.macos.desktop", ctx.INDEX) },