You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go.nvim/playground
ray-x fe8196f9d1 [goimport->goimports] Enduring the frustration of a longstanding typo, I've finally resolved to correct it. The change updates "goimport" to "goimport," including all related documentation and tests.
Additionally, I've set gopls as the default tool for both gofmt and goimports. This integration will be quicker than executing a separate command in the background and analyzing its output.
3 months ago
..
sampleApp Fixtures: Unit tests updates (#394) 7 months ago
README.md Update README 1 year ago
init_lazy.lua [goimport->goimports] Enduring the frustration of a longstanding typo, I've finally resolved to correct it. The change updates "goimport" to "goimport," including all related documentation and tests. 3 months ago
init_packer.lua [goimport->goimports] Enduring the frustration of a longstanding typo, I've finally resolved to correct it. The change updates "goimport" to "goimport," including all related documentation and tests. 3 months ago

README.md

A sample go project with minium config for go.nvim

Start with (may need to restart nvim after the first time)

cd sampleApp
nvim -u ../init.lua main.go

To start debugging, run the following commands

:10
:GoBreakToggle
:GoDebug

To unit test, run the following commands

:pkg/findAllSubStr_test.go
:10
:GoTestFunc