Fabian Gallina的python.el:imenu支持

时间:2011-06-11 18:07:33

标签: python emacs

有人可以分享说明如何使用Fabian Gallina的python.el获得imenu支持吗?

这是引入imenu支持的提交,但我对elisp的理解非常低:

https://github.com/fgallina/python.el/commit/938e03cf6cdfcc30de84a4ec428aef9ff3c0c852

目前我打开了python文件(主要模式是python)并按下了M+x imenu,但得到了:

No items suitable for an index found in this buffer

PS M-x python-imenu-不显示任何功能。这可能是问题吗?

1 个答案:

答案 0 :(得分:4)

我已经解决了这个问题:

(add-hook 'python-mode-hook
  (lambda ()
    (setq imenu-create-index-function 'python-imenu-create-index)))