ChatGPT icon indicating copy to clipboard operation
ChatGPT copied to clipboard

[Feature]输入框能不能和网页的贴近一点,不要有输入的大写提示,以及enter总会和输入法冲突

Open aptx4869yuyang2017 opened this issue 2 years ago • 4 comments

Feature description

image

在 MacOS 系统下,英文状态输入总会有大写提示,中文输入状态 enter 输入文字总会发送

Motivation

No response

Alternatives

No response

Additional context

No response

aptx4869yuyang2017 avatar Feb 17 '23 09:02 aptx4869yuyang2017

提示是系统自带的,和应用无关吧,因为 openai 没有在输入框中禁用它。至于你说的中文输入问题在 0.11.0 已经修复了

lencx avatar Feb 17 '23 10:02 lencx

提示是系统自带的,和应用无关吧,因为 openai 没有在输入框中禁用它。至于你说的中文输入问题在 0.11.0 已经修复了

已经更新 0.11.0 验证确实没问题了,感谢! 不过 输入框禁用大写,可以在系统端禁用么? 我问了一下 chat, 它说要改 CSS 样式 image

aptx4869yuyang2017 avatar Feb 18 '23 00:02 aptx4869yuyang2017

菜单里有注入脚本,你可以通过它来实现,脚本写完要重启才能生效,因为它是在初始化时注入的。

lencx avatar Feb 18 '23 01:02 lencx

菜单里有注入脚本,你可以通过它来实现,脚本写完要重启才能生效,因为它是在初始化时注入的。

const textareas = document.getElementsByTagName("textarea"); textareas[0].autocomplete = 'off'; textareas[0].style.textTransform = 'none';

比如这样么?我真的比较菜,这个脚本注入改配置,对我来说难度有点大啊 ಥ_ಥ

aptx4869yuyang2017 avatar Feb 18 '23 03:02 aptx4869yuyang2017

在系统设置里 -> 键盘,这里可以操作

image

image

cyhhao avatar Apr 01 '23 15:04 cyhhao