vim 与 ssh 和 putty ...Windows 粘贴后语法着色损坏
背景:我正在使用 putty 通过 ssh 在 vim 中编辑文件。 为了从 Windows 将大量文本复制到文件中,我只使用了标准的 putty 粘贴命令。
现在,每当我通过 ssh 使用 putty 在 vim 中编辑文件时,语法着色就会消失,并且全部替换为单色黄色。
问题:还有其他人看到过这种情况吗? 是否有最佳实践方法来诊断导致此问题的原因并进行修复?
Background: I was editing a file in vim using putty over ssh. In order to copy a huge section of text to the file from windows, I just used the standard putty paste command.
Now, whenever I edit a file in vim using putty over ssh, the syntax coloring is gone, and it is all replaced with a single-color yellow.
Question: Has anyone else out there seen this happen? Is there a best-practice way to diagnose what caused this and fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试按
Ctrl+L
刷新屏幕。 如果这没有帮助,请尝试:syntaxsync
。 如果这没有帮助,请尝试保存文件并使用:e
重新加载它。Try to refresh your screen by pressing
Ctrl+L
. If that doesn't help try:syntax sync
. If that doesn't help either try saving file and reloading it using:e
.你试过在vim中设置粘贴吗?
Have you tried :set paste in vim?