- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我在 Vim 中输入 :ls
, Vim 列出缓冲区。它很可能使用 def_prog_mode()
进入“熟模式”和 endwin()
.我想知道它如何打印值。我提出的最好的方法是使用 system("echo ....")
这将是相当费力的。
我试过 printf
- 没有效果,和 printw
.
我需要在我的应用程序中做同样的事情,而不是创建 Windows 或弹出窗口,我想像 Vim 那样列出内部信息。
这是我尝试过的示例,来自 http://gist.github.com/587622
#include <ncurses.h>
// it seems system echo is the only way to print some stuff in cooked mode
// i am trying to figure out how VIM displays the result of :ls
int main()
{
initscr(); /* Start curses mode */
printw("Hello World !!! Hit a key\n"); /* Print Hello World */
refresh(); /* Print it on to the real screen */
getch();
def_prog_mode(); /* Save the tty modes */
endwin(); /* End curses mode temporarily */
int i = 0;
for (i = 0; i < 5; i++) {
system("echo inside cooked mode");
}
//printf("helllow there\n");
//system("/bin/ls"); /* Do whatever you like in cooked mode */
//system("read");
//system("/bin/sh"); /* Do whatever you like in cooked mode */
//system("echo hit a key"); /* Do whatever you like in cooked mode */
//printw("Hit a key buddy\n"); /* Print Hello World */
reset_prog_mode(); /* Return to the previous tty mode*/
getch();
/* stored by def_prog_mode() */
refresh(); /* Do refresh() to restore the */
/* Screen contents */
printw("After cooked mode.\nKey to quit"); /* Back to curses use the full */
getch();
refresh(); /* capabilities of curses */
endwin(); /* End curses mode */
return 0;
}
gcc -o a.out -lncurses a.c && ./a.out
最佳答案
您可能只需要使用 fflush
来刷新 stdio 缓冲区。 .即使用后printf
要写一些文字,请调用 fflush(stdout)
以确保文本被发送到终端。 ncurses 可能正在调用 setbuf
或 setvbuf
启用块缓冲 IO 到终端,这不被视为保存和恢复的 tty 模式的一部分。
关于vim - Vim 如何显示 :ls results (curses/cooked mode),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3749916/
我正在查看一本书中的一些源代码并注意到一些代码似乎不在当前的 Python2.7 API 中。根据这段代码,模块 curses 应该有一个名为 LINES 的常量变量和另一个名为 COLS 的常量变量
#include using namespace std; #include //#include int main() { initscr();
我正在尝试在一个使用 Curses 库的简单窗口中实现删除字符。 基本上,窗口是使用以下边框代码创建的: box(local_win, 0 , 0); // Set the border of the
当您启动(n)curses程序时,它将从终端模拟器中删除滚动条,清除屏幕,滚动日志(历史记录)也将消失。当退出程序时,屏幕内容重新出现,滚动条返回,滚动缓冲区返回。 ncurses 是如何实现的?我研
我目前正在尝试为我的程序运行一个小型控制台菜单。我在PyPi curses-menu上找到了curses-menu模块并尝试了我的运气。 curses 菜单有一个 FunctionItem ,它调用
我通过 Linux Mint 的 Xfce 终端 ssh(也尝试过 ssh -t)连接到运行 Rasperian Stretch 的 Raspberry Pi。在 Pi 上,我有一个 Python-C
我正在用 python curses 开发一个应用程序。我正在使用 getch() 方法来获取按下的键。但我可以在屏幕上看到按下的键。我可以随时移动光标,但在光标之后我可以看到用户输入的内容。 当然,
有一个简单的程序: import curses import time window = curses.initscr() curses.cbreak() window.nodelay(True) w
我对 curses 很陌生,但我写了一个可以工作的小 curses 应用程序。但过了一会儿,我注意到我的默认终端设置在 session 期间发生了变化。背景颜色是纯黑色,但我配置了一个透明终端。而且颜
#! /usr/bin/python import curses import curses.textpad as textpad try: mainwindow = curses.inits
我正在尝试为我的 curses 输出添加颜色。然而,挑战在于文本是通过单个长字符串打印的,即 self.all_results。有什么方法可以为字符串的单个部分添加颜色。 def main(self,
我正在尝试在诅咒程序中实现上下滚动,目前我只是想捕捉事件并显示它的数字: MEVENT event; mousemask(ALL_MOUSE_EVENTS, NULL); while (ch != 1
我在使用 Curses 模块检测退格键时遇到了困难。每当我按下 Backspace 键时,返回的字符/字符串都是“^?”,但是我无法通过以下方式检测到它: 如果 str(key) == '^?': 下
我现在非常非常困惑...... 基本上试图声明一个指向curses窗口的全局变量,以便我可以使用调试命令,但它提示AttributeError:'NoneType'对象没有属性'addstr'这意味着
我很难理解 window.timeout() 函数。更具体地说,我正在玩 python 中的“贪吃蛇”游戏: s = curses.initscr() curses.curs_set(0) w = c
我有一个 curses 菜单,我想在上面添加多行描述。 我的代码打开了描述字段,但如果它们不适合该行则不会显示。 Curses 很乐意将多行文本打印为字符串(而不是菜单描述) 关于如何使多行描述有效的
我有以下代码,可让您上下滚动一段文本。每次滚动(即处理用户输入)时,键盘都会按预期更新。然而,在按下第一个键之前,没有任何显示,尽管我正在调用 pad.refresh() 就像我在每次用户输入后所做的
我正在调用 python -m pdb myapp.py,当异常触发时,我通常会返回到 pdb 解释器来调查问题。但是,在我通过 curses.wrapper() 调用并进入 curses 模式后抛出
我使用 curses 为我的应用程序创建了一个简单的 UI,我还使用层级结构(logmain、logmain.child1)等在我的模块中包含日志(日志记录)。 如果发生日志事件,日志将显示在我的 U
我正在学习 Curses 类(class),但无法控制 ENTER 键。到目前为止,这是我的代码: require 'curses' win = Curses::Window.new(0, 0, 0,
我是一名优秀的程序员,十分优秀!