我想在 emacs 中使用 powershell,但似乎 emacs 中的 powershell 是块缓冲的。例如,当我像这样编写一个简单的 c 程序时:
int main()
{
printf("input the number of a value: \n");
scanf("%d", &num);
}
我编译它并使其在 emacs 下的 Powershell 中运行。input the number of a value:
在我输入一个数字并点击之前,它不会打印出该行Enter
。c 程序在 emacs 之外的 powershell 中运行良好。我的问题是如何运行缓冲在 emacs 中的 PowerShell 行?
编辑我使用Powershell.el