diff --git a/Taskfile.yml b/Taskfile.yml index 3900751..19cbc8f 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -20,7 +20,7 @@ tasks: desc: run all tests cmds: - | - nvim --headless \ + nvim --clean --headless \ -u ./scripts/minimal_init.lua \ -c "lua MiniTest.run()" @@ -28,8 +28,7 @@ tasks: desc: generate vimhelp cmds: - | - nvim --noplugin \ - --headless \ + nvim --clean --headless \ -u "./scripts/minimal_init.lua" \ -c "luafile ./scripts/docgen.lua" \ -c ":qa!" diff --git a/doc/gopher.nvim.txt b/doc/gopher.nvim.txt index 3d653ca..47aa005 100644 --- a/doc/gopher.nvim.txt +++ b/doc/gopher.nvim.txt @@ -8,15 +8,15 @@ gopher.nvim is a minimalistic plugin for Go development in Neovim written in Lua It's not an LSP tool, the main goal of this plugin is add go tooling support in Neovim. Table of Contents - Setup..................................................|gopher.nvim-setup()| - Install dependencies..............................|gopher.nvim-dependencies| - Config..................................................|gopher.nvim-config| - Commands..............................................|gopher.nvim-commands| - Modify struct tags.................................|gopher.nvim-struct-tags| - Auto implementation of interface methods..................|gopher.nvim-impl| - Generating unit tests boilerplate......................|gopher.nvim-gotests| - Iferr....................................................|gopher.nvim-iferr| - Generate comments.....................................|gopher.nvim-comments| + Setup ................................................ |gopher.nvim-setup()| + Install dependencies ............................ |gopher.nvim-dependencies| + Config ................................................ |gopher.nvim-config| + Commands ............................................ |gopher.nvim-commands| + Modify struct tags ............................... |gopher.nvim-struct-tags| + Auto implementation of interface methods ................ |gopher.nvim-impl| + Generating unit tests boilerplate .................... |gopher.nvim-gotests| + Iferr .................................................. |gopher.nvim-iferr| + Generate comments ................................... |gopher.nvim-comments| ------------------------------------------------------------------------------ *gopher.nvim-setup()*