diff options
author | tyru <tyru.exe@gmail.com> | 2018-08-16 11:02:51 +0900 |
---|---|---|
committer | tyru <tyru.exe@gmail.com> | 2018-08-16 11:36:46 +0900 |
commit | 88ffdb47368c7bbfd72e643861f5f5a4663c1fb9 (patch) | |
tree | 6edca488a5c4952ce36f78ad3b01f7963c8c1e67 /test/command_callback | |
parent | 9cdd8b67b2f52a2dd348ffb13a7fc1b2dcf84416 (diff) | |
download | ale-88ffdb47368c7bbfd72e643861f5f5a4663c1fb9.zip |
feat: add ale_go_govet_options variable
Diffstat (limited to 'test/command_callback')
-rw-r--r-- | test/command_callback/test_govet_command_callback.vader | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/command_callback/test_govet_command_callback.vader b/test/command_callback/test_govet_command_callback.vader index a73118ae..3718e0a7 100644 --- a/test/command_callback/test_govet_command_callback.vader +++ b/test/command_callback/test_govet_command_callback.vader @@ -6,3 +6,7 @@ After: Execute(The default command should be correct): AssertLinter 'go', 'cd ' . ale#Escape(expand('%:p:h')) . ' && go vet .' + +Execute(Extra options should be supported): + let g:ale_go_govet_options = '--foo-bar' + AssertLinter 'go', 'cd ' . ale#Escape(expand('%:p:h')) . ' && go vet . --foo-bar' |