Updated plugins, also experimenting with a new font

The font is IBM Plex Mono: https://ibm.github.io/type/
This commit is contained in:
amix
2017-11-24 14:54:40 +01:00
parent 7fc202ec88
commit e9aac9794b
255 changed files with 2898 additions and 3752 deletions

View File

@@ -1,4 +1,4 @@
func Test_run_fmt()
func! Test_run_fmt() abort
let actual_file = tempname()
call writefile(readfile("test-fixtures/fmt/hello.go"), actual_file)
@@ -13,7 +13,7 @@ func Test_run_fmt()
call assert_equal(expected, actual)
endfunc
func Test_update_file()
func! Test_update_file() abort
let expected = join(readfile("test-fixtures/fmt/hello_golden.go"), "\n")
let source_file = tempname()
call writefile(readfile("test-fixtures/fmt/hello_golden.go"), source_file)
@@ -30,7 +30,7 @@ func Test_update_file()
call assert_equal(expected, actual)
endfunc
func Test_goimports()
func! Test_goimports() abort
let $GOPATH = 'test-fixtures/fmt/'
let actual_file = tempname()
call writefile(readfile("test-fixtures/fmt/src/imports/goimports.go"), actual_file)
@@ -45,3 +45,5 @@ func Test_goimports()
call assert_equal(expected, actual)
endfunc
" vim: sw=2 ts=2 et