vim-awesome VS vim-gutentags

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

vim-awesome

Awesome Vim plugins from across the universe (by divad12)

vim-gutentags

A Vim plugin that manages your tag files (by ludovicchabant)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
vim-awesome vim-gutentags
57 18
2,012 2,251
0.2% -
0.0 1.3
over 3 years ago 26 days ago
Python 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-awesome

Posts with mentions or reviews of vim-awesome. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-29.

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.

What are some alternatives?

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

bracey.vim - live edit html, css, and javascript in vim

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

ctags - A maintained ctags implementation

vundle - Vundle, the plug-in manager for Vim

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

delimitMate - Vim plugin, provides insert mode auto-completion for quotes, parens, brackets, etc.

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

vim-easy-align - :sunflower: A Vim alignment plugin

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

awesome-neovim - Collections of awesome neovim plugins.

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