我喜欢emacs,我正努力为python开发获得最好的设置。我目前正在使用elpy模式和python3.4解释器,它工作得很好最近困扰我的一件事是我的提示符如何默认为缓冲区的中间。这就浪费了很多空间。
有没有人知道如何告诉emacs让我的提示符保持在底部,就像普通的shell提示符一样?我想是这样的:

(setq prompt-on-bottom-of-buffer t)

以下是我对comint输出筛选器功能的设置:
(setq comint-output-filter-functions 'comint-truncate-buffer
                                comint-buffer-maximum-size 1000
                                comint-scroll-show-maximum-output t
                                comint-input-ring-size 500
                                comint-scroll-to-bottom-on-input t)

最佳答案

差不多;)

(setq comint-scroll-to-bottom-on-input t)

09-16 19:29