From cde0c7a110c0f65b9e4e6baf342654268efff371 Mon Sep 17 00:00:00 2001 From: Eric Mrak Date: Sat, 29 Jun 2024 02:50:36 -0700 Subject: [PATCH] Ignore doc/tags (#480) Thank you for these superb code action additions for golang! I use them regularly. I use native vim package management in combination with git submodules. Every time I run `:helptags ALL` the only plugin I use that shows erroneous submodule files is go.nvim because a `doc/tags` file has been generated. I think it is harmless to add this to the ignore list and you generally don't check these in as most plugin managers generate them for you. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e43b0f9..17402e5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .DS_Store +doc/tags