C++ IDE 功能:标题和实现文件的同步查看列?

发布于 2024-10-14 04:08:40 字数 309 浏览 4 评论 0原文

现代屏幕具有较大的分辨率,可以轻松容纳两列或三列 80 列代码。 C++ 基本上要求您将代码分成 .hpp.cpp 文件。

因此,要利用此空间,为什么不在打开 .hpp 文件时自动打开第二列中的 .cpp 文件(反之亦然)?这显然不适用于极端情况,尽管对于许多项目来说,文件名之间存在直接对应关系,很容易确定。对我来说,这似乎是对这个空间的非常合理的利用,很难想象它还没有被这样做过。

有没有 IDE 可以做到这一点?一个插件?或者说,你为什么认为这件事做不到?

Modern screens have large resolutions, fitting two or three columns of 80-column code easily. C++ basically requires that you separate your code into .hpp and .cpp files.

So, to utilize this space, why not automatically open the .cpp file in a second column when you open a .hpp file (and vice versa)? This obviously wouldn't work for extreme cases, although for a lot of projects there is a direct correspondence between the filenames that would be easy to determine. To me, this seems like a very reasonable use of this space, and it's hard to imagine it hasn't been done.

Is there an IDE that does this? A plugin? Or, why do you think it can't be done?

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

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

发布评论

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

评论(1

高速公鹿 2024-10-21 04:08:40

如果您使用的是 Visual Studio,那么有一个插件 (Visual Assist X),它已经非常好用了C++ 项目也有类似的功能。它不是完全自动的,但您所要做的就是按Alt+o,它将打开该集中的另一个文件。也就是说,如果您是 .hpp,则按下该键将打开 .cpp,反之亦然。

他们的网站通过视频演示了其工作原理。它还适用于 XAML/代码隐藏文件、Windows 窗体/代码文件等。(基本上在成对操作的任何文件中,该组合键都会切换到成对中的另一个文件)

If you're in Visual Studio, a plugin (Visual Assist X), which is already very nice to have for C++ projects has a similar feature. It's not completely automatic, but all you have to do is press Alt+o and it will open the other file in the set. That is, if you're .hpp pressing the key will open the .cpp, and vice versa.

Their website demonstrates how this works in a video. It also works for things like XAML/Code Behind files, Windows Forms/Code files, etc. (Basically anywhere files operate in pairs, that key combo switches to the other file in the pair)

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