emacs 使用大纲次要模式折叠类中的函数

发布于 2024-07-20 04:08:45 字数 71 浏览 7 评论 0原文

我应该使用什么样的钩子来折叠类中的函数。 我想查看类中函数的轮廓,但如果我挂钩隐藏,则所有内容(包括类)都会在打开过程中折叠。

What kind of a hook should i use to collapse just functions in the class. I want to see the outline of the functions in the class but if i hook hide-all everything including the class is collapsed during open.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

变身佩奇 2024-07-27 04:08:45

这个小片段对我来说很有效。 但是,您可能想要限制哪些文件启用了大纲模式。 您可以自定义注释掉的 when 语句来执行此操作。 并添加适当的右括号。

(defun my-outline-trigger ()
  "enable outline mode and hide all the function bodies"
  ;; (when (member major-mode '(cc-mode emacs-lisp-mode)) ....)
  (outline-minor-mode)
  (hide-body))

(add-hook 'find-file-hooks 'my-outline-trigger)

This little snippet does the trick for me. However, you probably want to restrict which files have outline mode enabled. You can customize the commented out when statement to do that. And add the proper close paren.

(defun my-outline-trigger ()
  "enable outline mode and hide all the function bodies"
  ;; (when (member major-mode '(cc-mode emacs-lisp-mode)) ....)
  (outline-minor-mode)
  (hide-body))

(add-hook 'find-file-hooks 'my-outline-trigger)
幸福不弃 2024-07-27 04:08:45

我使用 hideshow.el - 它似乎对我来说效果更好。

I use hideshow.el - it seems to work better for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文