vim-gutentags VS cmake4vim

Compare vim-gutentags vs cmake4vim and see what are their differences.

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
vim-gutentags cmake4vim
18 8
2,255 124
- -
1.3 4.9
about 1 month ago about 2 months ago
Vim Script Vim Script
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

vim-gutentags

Posts with mentions or reviews of vim-gutentags. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-25.
  • Vim + Ctags + Modern JS
    1 project | /r/vim | 14 Apr 2023
    https://github.com/ludovicchabant/vim-gutentags/issues/139 has some background.
  • Rust setup for neovim
    2 projects | /r/rust | 25 Oct 2022
    Hi everyone. I'm looking to have a better setup for Rust in neovim. I do have rust-analyzer installed for useful lsp things but I was hoping to get tags working for it as well. I was using vim-gutentags (https://github.com/ludovicchabant/vim-gutentags) for navigating useful functions and stuff but couldn't quite get it to work for rust. Is there a simple way to do it or do I need rusty-tags and some aucommand to get it to work?
  • Project & File navigation
    20 projects | /r/vim | 4 Oct 2022
    use tags, I like https://github.com/ludovicchabant/vim-gutentags for this. I might use my local .vimrc to tweak the config (exclude compiled source files and other uninteresting things)
  • Whenever I'm looking for plugins these days [OC]
    29 projects | /r/neovim | 7 Jul 2022
  • Big game changers you wish you knew about earlier
    6 projects | /r/vim | 14 Jun 2022
    guttentag: https://github.com/ludovicchabant/vim-gutentags
  • Having trouble with ctags
    3 projects | /r/vim | 5 Jun 2022
    Without more information, it's hard to point you in the right direction. The tags file could be out-of-date, in which case you can try to re-generate it (vim-gutentags for tags auto-generation). You could have 2 function declarations with the same name, in which case you can try :tag to cycle through tags (supports partials, like :tag F which will suggest FOO, FAR, FAB ...etc) or :tag to see a list of possible options (supports partials, like :tag F which will list FOO, FAR, FAB, ...etc) for various matching tags you can jump to (fzf.vim provides a tags fuzzy finder via :Tags). Maybe you're experiencing :h tag-priority?
  • What are your must-have vim/nvim extensions?
    53 projects | /r/vim | 9 May 2022
    ludovicchabant/vim-gutentags - Tags
  • Vim – Minimal Setup Explained
    8 projects | news.ycombinator.com | 24 Feb 2022
    You can then use :cnext and :cprev (or focusing the window and selecting an entry) to navigate between them.

    As others have stated, you can also use ctags (plugins like https://github.com/ludovicchabant/vim-gutentags are useful for refreshing tags in a project), but for some languages you may need to add a tag definition (e.g. for something like rust or zig). For older languages like C you should be fine.

  • How to set up VIM for PHP development
    8 projects | dev.to | 14 Feb 2022
  • Can you add custom functionality for goto definition for lsp to use multiple langauges?
    3 projects | /r/neovim | 30 Jan 2022
    Not sure if it will help in this case, but I also depend on ctags for when the lsp fails (e.g. code it doesn't compile for some reason). Here you let a program create a tags file, e.g. I use https://github.com/universal-ctags/ctags (it seems it can parse json files, though I'm not sure what kind of tags are generated from this and if they will be useful to you) with https://github.com/ludovicchabant/vim-gutentags to update the tags file. The tags file just contains symbol names with locations where they are defined, and vim has builtin functionality to use these tags files :h tag and they (can) work filetype independent. For example if I mention a C type in a markdown document I can just use ctrl-[ to jump to its definition in the C source file. Possibly you can generate tags files yourself from the json files to help with this, the tags file format is not very complicated. Tags also are not very intelligent and depend on unique names for them to work well, there is the :h g_CTRL-] that can help, but for symbols that are very common (e.g. init or something that potentially has like 20+ definitions) it doesn't really work.

cmake4vim

Posts with mentions or reviews of cmake4vim. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-01.
  • New year and new vim (aka NeoVim)
    15 projects | /r/neovim | 1 Jan 2023
    The plugin is here and adds features like kits, customizable build types, support for running ctest, automatic updates/restarts of clangd LSP server and also provides some functions that allow cool plugin customization. Basically, you get features that are mostly equivalent with features from the plugin I used in vim, but implemented in Lua. Feel free to test it out. Note that I only tested it on my machine (M1Pro mac) and in one Linux container, so expect bugs, crashes and various errors. Feel free to post issues and PRs with fixes.
  • New plugin for gtest integration with vim
    4 projects | /r/vimplugins | 12 Nov 2022
    The plugin depends on cmake4vim (a plugin for CMake integration with Vim/Neovim), this allowed to have deeper integration of gtest-vim for CMake projects (you can just switch between CMake targets in order to run different tests).
  • CMake4Vim update
    5 projects | /r/vim | 16 Aug 2021
    Around the year ago, I have posted the last post about cmake4vim plugin updates.
  • Can you recommend a good Vim configuration for C++ Development for a complete rookie?
    5 projects | /r/vim | 2 Aug 2021
    CMake integration: https://github.com/ilyachur/cmake4vim
  • Creating shortcuts for Dispatch
    2 projects | /r/vim | 22 Feb 2021
    Not sure if you want to add a other plugin, but I've had good results with cmake4vim. It integrates with Dispatch if it's installed.
  • Is there a way to get command mode out colour output like on the terminal?
    3 projects | /r/neovim | 19 Jan 2021
    Good question! And for Cmake projects I really like the cmake4vim plugin from ilyachur. https://github.com/ilyachur/cmake4vim
  • Equivalent method for IDE "run" with Vim / general help
    1 project | /r/vim | 6 Jan 2021
    I think, that you can do such 'advanced' features without used plugins. Concerning my C++ workflow, I'm using it with Cmake and https://github.com/ilyachur/cmake4vim plugin adds the possibility to compile it in a few commands. Also, I've added a feature to run the CMake target with the use of one command and hope, that soon it will be merged.
  • Cmake4vim Plugin Which Integrates Cmake Into Vim
    1 project | /r/vim | 26 Dec 2020
    Here is the issue with the video https://github.com/ilyachur/cmake4vim/issues/68

What are some alternatives?

When comparing vim-gutentags and cmake4vim you can also consider the following projects:

tagbar - Vim plugin that displays tags in a window, ordered by scope

vim-dispatch - dispatch.vim: Asynchronous build and test dispatcher

ctags - A maintained ctags implementation

chadtree - File manager for Neovim. Better than NERDTree.

nvim-cmp - A completion plugin for neovim coded in Lua.

vimspector - vimspector - A multi-language debugging system for Vim

coc.nvim - Nodejs extension host for vim & neovim, load extensions like VSCode and host language servers.

vim-cmake - Vim/Neovim plugin for working with CMake projects

vista.vim - :cactus: Viewer & Finder for LSP symbols and tags

asynctasks.vim - :rocket: Modern Task System for Project Building, Testing and Deploying !!

nvim-bqf - Better quickfix window in Neovim, polish old quickfix window.

vim-agriculture - 🚜 Vim plugin to improve project searching with tools like ag and rg