gpt4 book ai didi

macos - 在 VS Code 中输入 Unicode 符号

转载 作者:行者123 更新时间:2023-12-01 13:42:42 24 4
gpt4 key购买 nike

我在 Visual Studio Code 编辑器中输入 Ω 符号 (U+03A9) 时遇到问题。

在我的 Mac 上,我通常可以使用 option + z 输入它,但它似乎在代码中不起作用。

许多其他组合似乎工作得很好(例如,≈ option+x 输入正确)。

我想知道 VS Code 是否正在拦截其他一些键盘快捷键的 option + z 。我搜索了键盘快捷键列表,但没有找到任何相关内容。

最佳答案

⌥Z 必然会切换自动换行。

You can toggle word wrap for the VS Code session with ⌥Z. Restarting VS Code will pick up the persisted editor.wrappingColumn value.

https://code.visualstudio.com/docs/editor/codebasics#_common-questions



Default Keyboard Shortcuts它显示为:
{ 
"key": "alt+z",
"command": "editor.action.toggleWordWrap",
"when": "editorTextFocus"
}

To remove a specific key binding, simply add a - to the command and the rule will be a removal rule.

https://code.visualstudio.com/docs/customization/keybindings#_removing-a-specific-key-binding-rule



您的 keybindings.json文件应包括以下内容:
{
"key": "alt+z",
"command": "-editor.action.toggleWordWrap",
"when": "editorTextFocus"
}

我已经确认这适用于 Mac 的 VSCode。

关于macos - 在 VS Code 中输入 Unicode 符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38598536/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com