-1

私は emacs 23 (acquamacs) を使用しており、nrepl.elをインストールしています。

Clojureコードをいくつか評価しました

C-c C-p

(このキー コンボは、ポイントの前のフォームを評価し、結果をポップアップ バッファーに表示することです。) これを実行すると、結果を確認するための適切なポップアップ バッファーが生成されます。

このポップアップ バッファを非表示にするにはどうすればよいですか? (私はそれを殺したくありません-フルスクリーンを取り戻すだけです)。


参考までに、このコマンドについて - 私はこれを実行しました

C-h k C-c C-p

そして得た

^C ^P runs the command nrepl-pprint-eval-last-expression, which is an interactive compiled Lisp function in `nrepl.el'.

It is bound to ^C ^P, <menu-bar> <nREPL> <Eval last expression in popup buffer>.

(nrepl-pprint-eval-last-expression)

Evaluate the expression preceding point and pprint its value in a popup buffer.
4

3 に答える 3

1

You haven't provided enough information for anyone to test (that's not a standard global binding), and you haven't even indicated whether the new window is selected; but there's a generic solution which will work regardless.

Add (winner-mode 1) to your init file, and then you can always use C-c<left> to undo the most recent window configuration change (or changes plural, if you repeat the command).

于 2013-05-25T14:45:20.850 に答える
0

Emacs に質問するときは、常に、キー シーケンスが何をするかを説明してください。Cc Cp はここでは何もしません。それが何をするかを調べるには、Ch k Cc Cp を押して報告してください。この場合、describe-key を呼び出して、Cc Cp の機能を説明するように指示しています。

于 2013-05-25T15:12:56.333 に答える
0

それか、単に を押してくださいq。ヘルプ バッファで試してみたところ、ウィンドウは消えますが、バッファは消えません。ただし、オートコンプリートのために ac-nrepl が行うスタイルのポップアップ バッファは、単純に無視されることを意図しています。

于 2013-05-26T04:11:50.747 に答える