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を使用します