xcode 中的文本光标无法输入。闪烁的矩形而不是闪烁的线

问题描述 投票:0回答:4

我在属于前雇员的系统上使用 Xcode,但无法打字。有一个奇怪的矩形文本光标在闪烁,底部有一个空行,以一种奇怪的方式响应我的按键类型。如果我按下一个键,文本光标就会变小。还有我当前所在文件的位置路径,我也希望将其删除。谢谢

enter image description here

在每个问题旁边添加红色数字。

ios xcode interface-builder text-editor
4个回答
0
投票

我怀疑你的前员工可能定制了 Xcode,或者更有可能将 Macintosh 定制为非普通版(可能是文本输入条目设置或某些国际化或某些第三方扩展或首选项窗格)。

尝试这样做:转到 Xcode 中的“文本编辑”首选项并切换一些内容,看看您是否有更好的运气。 如果这不起作用,请在 Macintosh 上创建一个新用户,然后从该新用户帐户启动并运行 Xcode。


0
投票

XVim.xcplugin <-- that was the file causing all of this. After deletion and relunch everything is back to normal. You can find more information about it here: https://github.com/WarWithinMe/xVim


0
投票

本期由 XVim.xcpluginxc 编写。通过删除它,我们就摆脱了这个问题。对于这个问题。请按照以下步骤操作。

 1.Open the terminal.
 2.Type "find ~/ XVim.xcpluginxc". This will list your entire system with this particular file/folder name.
 3.From that list copy that particular path having this folder.
 4.Type "rm -Rf path that you copied earlier".
 5.Press "Enter".
 6.type "exit".

最后关闭终端并重新启动 Xcode。


0
投票

从 Xcode 关闭 Vim 模式

Xcode > 编辑器 > 取消选中 Vim 模式

© www.soinside.com 2019 - 2024. All rights reserved.