vim-godebug icon indicating copy to clipboard operation
vim-godebug copied to clipboard

Go debugging for Vim

Results 8 vim-godebug issues
Sort by recently updated
recently updated
newest added

Why does my neovim console always open on the left side , can I be opened at the bottom?

Hey there, I was wondering how I can archive the following over vim `dlv debug main.go -- version` for example ? Thanks a lot.

Is it possible to put in an argument to make :GoDebug start running in main.go while in another file, like so: :GoDebug main.go or :GoDebug ~/path/main.go?

These changes allow an end-user to customize the breakpoint sign, for example by placing the following in `config.vim`: ```vim let g:godebug_breakpoints_sign = '✽' hi GoDebugBreakpointsSign ctermfg=239 ctermbg=235 ```

Source file ```go package main import "testing" func TestFailure(t *testing.T) { t.Fatal("not implemented") } func TestHelloWorld(t *testing.T) { } ``` `:GoDebugTest` ``` Type 'help' for list of commands. --- FAIL:...

related issue #1 Currently, I'm implementing `:terminal` and `term_start()` for Vim. ![godebug](https://user-images.githubusercontent.com/10111/28632720-6f38d9fc-726c-11e7-8ed8-0a1d47c789ee.png) If it will be merged in master branch, this patch will works well. Thanks.

I tried `:GoDebug -x 1 %` But I can't get flag `x` in debugging