vim-go v1.0.3 Release Notes

Release Date: 2015-03-07 // about 9 years ago
  • ๐Ÿ”‹ FEATURES:

    • โœ… A new :GoTestCompile command (with appropriate mappings) is added. Useful to compile a test binary or show/fix compile errors in quickfix window

    ๐Ÿ‘Œ IMPROVEMENTS:

    • referrer mode is improved to show referring lines in the quickfix window
    • A new errt snippet is added, which expands to if err != nil { t.Fatal(err) }
    • A new errh snippet is added, useful to be used in a http.Handler
    • UltiSnips snippets are improved to take advance of Vim's Visual mode. For example selecting a block and typing if will create an if scope around the block.
    • Cleanup README.md

    ๐Ÿ› BUG FIXES:

    • ๐Ÿ›  Fix trimming brackets if completion was invoked on a previous completion
    • ๐Ÿ›  Fix Oracle scope settings. Added docs about usage.
    • ๐Ÿ›  Fixed previously broken var and vars snippets
    • ๐Ÿ›  Fix duplicate docs
    • ๐Ÿ›  Fix fallback binary path for Windows users. The fallback mechanism is used to discover the necessary Go tools, such as godef, gocode, etc...