gpt4 book ai didi

c - 在 Vim 中重构 C/C++(例如像 Eclipse 中的方法提取)

转载 作者:太空狗 更新时间:2023-10-29 16:23:06 26 4
gpt4 key购买 nike

Vim 中是否有任何插件或内置方法可以对 C 或 C++ 代码执行重构,类似于 Eclipse 中的重构工具?

我特别喜欢 Eclipse 中的提取方法重构工具,它可以确定新方法的参数,并且通常还会猜测一个变量用作返回值。

最佳答案

不是,虽然 Vim 是一个很好的编辑环境,并且可以通过很多方式进行自定义(代码折叠、语法着色、宏扩展等),但其中大部分是在语法层面完成的,而不是语义层面的.甚至代码折叠也只是匹配对立的大括号。

要进行适当的重构,您必须具备大量关于 AST、在哪个范围内声明了哪些变量等的语义知识。像 Eclipse 这样的 IDE 会为每个词法作用域中定义的变量建立一个缓存,这样它们就可以在确定要重命名的内容和位置时快速引用它们的使用位置。

这并不是说您不能在句法上做某些事情;毕竟,只需取出一段代码并将其放入一个单独的函数中就足够容易了。您甚至可以猜测一些参数(例如,查找变量列表,找出哪些变量具有局部声明,删除它们,剩下的就是您的参数)。但是 Eclipse 还可以做其他事情——比如弄清楚是否有任何变量是在函数中修改,并确保它们通过返回值传回。它还会检查任何抛出的异常,并将它们添加到列表中。

最终结果是,虽然您可以在 Vim 中近似其中的一些,但您确实无法在纯 Vim 环境中实现它。您可以在 Eclipse 中使用类似 Vim 的键绑定(bind),或者查看 eclim .来自主页:

The primary goal of eclim is to bring Eclipse functionality to the Vim editor. The initial goal was to provide Eclipse’s java functionality in vim, but support for various other languages (c/c++, php, python, ruby, css, html, xml, etc.) have been added and several more are planned.

Eclim is less of an application and more of an integration of two great projects. The first, Vim, is arguably one of the best text editors in existence. The second, Eclipse, provides many great tools for development in various languages. Each provides many features that can increase developer productivity, but both still leave something to be desired. Vim lacks native Java support and many of the advanced features available in Eclipse. Eclipse, on the other hand, still requires the use of the mouse for many things, and when compared to Vim, provides a less than ideal interface for editing text.

That is where eclim comes into play. Instead of trying to write an IDE in Vim or a Vim editor in Eclipse, eclim provides an Eclipse plug-in that exposes Eclipse features through a server interface, and a set of Vim plug-ins that communicate with Eclipse over that interface.

这不仅提供了类似 Eclipse 的环境,而且 Eclipse。但是您仍然可以获得 vim 的导航和文本编辑功能。听起来这可能适合您的需要,尽管 refactoring support 上的文档并不表示它提供了提取方法功能。

关于c - 在 Vim 中重构 C/C++(例如像 Eclipse 中的方法提取),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2470653/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com