自动完成弹出窗口右侧的字母是什么?

时间:2013-04-03 20:57:35

标签: emacs

例如,此屏幕截图中的“a”和“d”是什么意思?

screenshot of Emacs's auto-complete package in action

(一些背景细节:我在OS X 10.8.3上使用Emacs 24.3,并且有问题的自动完成库是auto-complete

1 个答案:

答案 0 :(得分:12)

an image of a table in auto-complete's documentation, mapping each symbol to its meaning

这些字母是助记符,表明为什么auto-complete会考虑一个值得您考虑的特定候选人。在屏幕截图中,许多候选人旁边都有“d”,因为他们来自the project's dict file for Python-mode。 “a”适用于abbrev ...但我不能说更多,因为我还没有使用过abbrev内容。

无论如何,您可以通过浏览ac-define-source及其documentation来了解更多信息。