diff --git a/playground/README.md b/playground/README.md new file mode 100644 index 0000000..6422488 --- /dev/null +++ b/playground/README.md @@ -0,0 +1,23 @@ +A sample go project with minium config for go.nvim + +Start with (may need to restart nvim after the first time) + +```shell +cd sampleApp +nvim -u ../init.lua main.go + +``` + +To start debugging, run the following commands +```vim +:10 +:GoBreakToggle +:GoDebug +``` + +To unit test, run the following commands +```vim +:pkg/findAllSubStr_test.go +:10 +:GoTestFunc +```