DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Ctrl Enter Submit — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

dsh-ctrl-enter-submit

Ctrl Enter Submit

DeepSeek Harness 插件:将提交快捷键改为 Ctrl/Cmd+Enter,普通 Enter 用于换行,可在设置中切换。

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add dsh-ctrl-enter-submit@1.1.1
README兼容性版本

兼容性与来源证明

Ctrl Enter Submit 以 dsh-ctrl-enter-submit 发布,当前版本为 1.1.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
web
发布来源
npm
Registry 更新时间
2026/9/14

版本

1.1.1stable
2026/9/14
1.1.0stable
2026/9/1
1.0.0stable
2026/8/26

相关插件

正在加载相关插件…

最新版
1.1.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
19.7 kB
文件数
6
Surface
web
许可证
MIT
发布源
npm
GitHub
★ 2
周下载
0
最近提交
2026/9/14
查看源码 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 productivity-workflow 分类下经过校验的插件。

Client Ui Task Board@linxin666/dsh-client-ui-task-board面向 DSH Web GUI 的主机权威任务面板,支持实际会话执行、主机 cron 调度以及可选的跨平台空闲睡眠保护;以挂载方式提供,无需修改 DSH 源代码。Web All@linxin666/dsh-web-allDSH Web UI 全家桶聚合插件:一键安装全部功能插件(task-board / git-graph / pet / remote-web-ui / web-ui-settings / skin-center / community-plugins / compat shim)。compat 桥接层已并入本包(src/client),无需独立 compat npm 包。Rewind Plugindsh-rewind-plugin同窗口内对话回退并恢复工作区文件Acp App@deepseek-ai/dsh-acp-appdsh ACP 配置文件包:基于 dsh-base 的仅限自动化的 JSON-RPC stdio 和进程生命周期管理

README

dsh-ctrl-enter-submit

English | 中文

DeepSeek Harness (DSH) 插件:将文本输入的提交快捷键从 Enter 改为 Ctrl/Cmd+Enter。覆盖主对话框与 Agent 提问卡片(ask_user_question)的所有输入控件;可在「设置 → 插件」中随时开关,禁用后恢复默认行为。

行为

按键插件启用时插件禁用后
Enter多行框换行;单行框/选项按钮不动作提交消息 / 回答 / 下一题
Ctrl/Cmd+Enter提交消息 / 回答 / 下一题提交(DSH 原本就支持)
Shift+Enter多行框换行提交消息(DSH 原生行为)

适用范围:主对话框 composer,以及 Agent 提问卡片(ask_user_question)的所有输入控件——多行 textarea(普通 Enter / Shift+Enter 换行)、单行自定义输入框(普通 Enter 不动作)、选项按钮(普通 Enter 不再选中/跳题,鼠标点击与空格选择不受影响)。

/ 和 @ 触发菜单打开时,Enter 仍然正常选择菜单项,不会被拦截。输入法组合状态下也不会被拦截。

安装

从插件市场安装:打开 Settings → Plugin Market,搜索 dsh-ctrl-enter-submit,一键安装。

或用命令行:

dsh plugin --profile web add dsh-ctrl-enter-submit

安装后刷新浏览器页面即可生效(纯客户端插件,无需重启服务)。

启用 / 禁用

在 DSH Web 界面的 设置 → 插件(Plugins) 中找到 ctrl-enter-submit,用开关切换:

  • 关闭:立即恢复 Enter 提交(刷新页面后生效)
  • 打开:恢复 Ctrl/Cmd+Enter 提交

卸载:

dsh plugin --profile web remove dsh-ctrl-enter-submit

工作原理

插件在浏览器端的 document 捕获阶段拦截 keydown 事件,因此一定早于编辑器根元素上的键盘监听与 React 在容器上的委托监听:

  • 主对话框输入面按版本分两种:
    • DSH ≥ 0.1.2:composer 是 Lexical contenteditable([data-composer-input]),普通 Enter 会被伪装成 Shift+Enter,由 DSH 自己的 INSERT_LINE_BREAK 命令插入换行,与用户按住 Shift 按 Enter 完全一致;伪装失败时退化为阻断提交链路
    • 更早版本:composer 是 textarea,普通 Enter 与 Shift+Enter 调用 stopImmediatePropagation() 阻止 React 的 onKeyDown(即 DSH 的提交逻辑),但不调用 preventDefault(),因此照常换行
  • Ctrl/Cmd+Enter:一律放行,由 DSH 正常提交
  • /、@ 触发菜单打开时不接管,Enter 仍然选择候选项;输入法组合状态(中文/日文/韩文输入等)也不接管
  • 无会话的工作区引导态(composer 不可编辑)不接管
  • 插件 Host 端为空操作,所有功能均在浏览器 Client 端实现

兼容性

  • 需要 dsh web 0.1.0-rc.6 或更高版本;已在 0.1.2-rc.1 的 contenteditable composer 上验证
  • 在 Windows、macOS、Linux 上均可工作(Ctrl 和 Cmd 都识别)

本地开发

用本地路径以链接方式安装,改完 client.js 后刷新浏览器即可看到效果,无需重新发布:

dsh plugin --profile web add ./dsh-ctrl-enter-submit

DSH Desktop 用的是 desktop profile,把 --profile web 换成 --profile desktop 即可。


English

A DeepSeek Harness (DSH) plugin that changes the submit shortcut from Enter to Ctrl/Cmd+Enter. It covers the main composer and every input control in the agent question card (ask_user_question). Toggle it on/off anytime in Settings → Plugins; disabling restores the default Enter-submit behavior.

Behavior

KeyPlugin enabledPlugin disabled
EnterNewline in multiline fields; no action in single-line inputs / option buttonsSubmits the message / answer / advances
Ctrl/Cmd+EnterSubmits the message / answer / advancesSubmits (DSH supports this natively)
Shift+EnterNewline in multiline fieldsSubmits the message (DSH native behavior)

Scope: the main composer and the agent question card (ask_user_question) — multiline textarea (plain Enter / Shift+Enter insert a newline), single-line custom-answer input (plain Enter does nothing), and option buttons (plain Enter no longer selects/advances; mouse click and Space still select).

When the / or @ candidate menu is open, Enter selects the highlighted item as usual. IME composition is never intercepted.

Install

From the Plugin Market: open Settings → Plugin Market, search for dsh-ctrl-enter-submit, and install with one click.

Or from the command line:

dsh plugin --profile web add dsh-ctrl-enter-submit

Refresh the browser page after installing (client-only plugin, no restart needed).

Enable / Disable

Find ctrl-enter-submit in Settings → Plugins and toggle it:

  • Off: Enter submits again (takes effect after a page refresh)
  • On: Ctrl/Cmd+Enter submits

To uninstall:

dsh plugin --profile web remove dsh-ctrl-enter-submit

How it works

The plugin intercepts keydown on document during the capture phase, so it always runs before the editor root's keyboard listeners and React's delegated listeners:

  • The composer input surface depends on the DSH version:
    • DSH ≥ 0.1.2: the composer is a Lexical contenteditable host ([data-composer-input]); plain Enter is turned into a Shift+Enter gesture handled by DSH's own INSERT_LINE_BREAK command, exactly like holding Shift while pressing Enter. If the gesture cannot be applied, the plugin falls back to blocking the submit chain.
    • Older versions: the composer is a textarea; plain Enter and Shift+Enter call stopImmediatePropagation() so React's onKeyDown (DSH's submit logic) never sees them, without calling preventDefault(), so the textarea still inserts a newline.
  • Ctrl/Cmd+Enter is always left untouched and submits as usual.
  • While the / or @ trigger menu is open the key is not intercepted, and IME composition is never intercepted.
  • The non-session workspace-trigger state (composer not editable) is left untouched.
  • The host entry is a no-op; all behavior lives in the browser client.

Compatibility

  • Requires dsh web 0.1.0-rc.6 or later; verified against the contenteditable composer of 0.1.2-rc.1.
  • Works on Windows, macOS, and Linux (both Ctrl and Cmd are recognized).

License

MIT