Vim、Python 和诅咒

发布于 2024-08-07 07:48:47 字数 366 浏览 5 评论 0原文

我为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

删除→记忆 2024-08-14 07:48:47

我不太确定上下文,但是“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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文