Vim、Python 和诅咒
我为 vim 编写了一个使用curses 库的小python 脚本。 当我尝试调用该函数时,curses 抱怨:
Traceback (most recent call last):
File "<string>", line 9, in <module>
File "/usr/lib/python2.6/curses/__init__.py", line 33, in initscr
fd=_sys.__stdout__.fileno())
_curses.error: setupterm: could not find terminal
不知道如何解决这个问题
编辑:GVIM 抱怨 Vim 工作正常
I wrote a small python script for vim that uses the curses library.
When I try to call the function curses complains about:
Traceback (most recent call last):
File "<string>", line 9, in <module>
File "/usr/lib/python2.6/curses/__init__.py", line 33, in initscr
fd=_sys.__stdout__.fileno())
_curses.error: setupterm: could not find terminal
Don't know how to solve this
Edit: GVIM complains Vim works fine
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不太确定上下文,但是“GVIM 抱怨 Vim 工作正常”非常有洞察力:curses 在控制台中使用,gvim 在 X 窗口中运行,因此没有控制台。
I'm not very sure about the context, but "GVIM complains Vim works fine" is very insightful: curses are used in the console, gvim is run in a X window, thus there's no console.