Emacs 符号点与 C++范围

发布于 2024-12-06 05:03:57 字数 143 浏览 1 评论 0原文

在我的用例中,是否有人扩展了 symbol-at-point 来包含 C++ 命名空间、范围?

将光标放在 std::vector 上最好返回 ("std" "vector")

Has anyone extended symbol-at-point to include, in my use case the C++ namespace, scope as well?

Having the cursor on std::vector should preferably return ("std" "vector").

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

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

发布评论

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

评论(1

等待我真够勒 2024-12-13 05:03:57

CEDET 工具集包含一组本地上下文解析器,可以执行您想要的操作,但它不会扩展symbol-at-point。相反,它有自己的上下文解析器。如果您有预装了 CEDET 的 Emacs 版本,只需启用semantic-mode,然后使用命令semantic-analyze-current-context。它将返回一个带有前缀的类。如果您只想要程序的原始前缀,那么您可以使用semantic-ctxt-current-symbol来返回点下的任何内容。

The CEDET toolset includes a set of local context parsers that will do what you want, but it doesn't extend symbol-at-point. Instead it has its own context parser. If you have a version of Emacs with CEDET pre-installed, just enabled semantic-mode, and then use the command semantic-analyze-current-context. It will return a class with the prefix. If you just want the raw prefix for a program, then you can instead use semantic-ctxt-current-symbol to return whatever is under point.

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