Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我经常使用鼠标缓冲区菜单(当单击鼠标左键并弹出缓冲区菜单时)。有没有办法对列表进行排序以将 c 和汇编文件保留在顶部。另外,无论打开文件的列表有多长,是否都可以防止所有这些优先文件被分类到列表中的子目录中?
我不认为你可以得到你所要求的(“一长串 C 文件和汇编文件在顶部,然后是所有其他文件的子文件夹”)而不破解 emacs 源。
但是,您可以按模式排列所有缓冲区:自定义mouse-buffer-menu-mode-mult为 0,使用M-x customize或添加
mouse-buffer-menu-mode-mult
(custom-set-variables '(mouse-buffer-menu-mode-mult 0))
到你的~/.emacs.el.
~/.emacs.el
也可以看看:
如何在 Emacs 中设置鼠标缓冲区菜单中的项目数?
如何让 Emacs 缓冲区菜单始终显示模式名称?