From 27903c5b8656c796564ef073c1ebe77a2f0154e1 Mon Sep 17 00:00:00 2001 From: Adam Stankiewicz Date: Thu, 28 Sep 2017 22:18:09 +0200 Subject: Revert inlining basic language pack --- compiler/go.vim | 33 --------------------------------- 1 file changed, 33 deletions(-) (limited to 'compiler/go.vim') diff --git a/compiler/go.vim b/compiler/go.vim index 4c91b9fc..5c30dd2f 100644 --- a/compiler/go.vim +++ b/compiler/go.vim @@ -1,36 +1,3 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1 - -" Vim compiler file -" Compiler: Go -" Maintainer: David Barnett (https://github.com/google/vim-ft-go) -" Last Change: 2014 Aug 16 - -if exists('current_compiler') - finish -endif -let current_compiler = 'go' - -if exists(':CompilerSet') != 2 - command -nargs=* CompilerSet setlocal -endif - -let s:save_cpo = &cpo -set cpo-=C - -CompilerSet makeprg=go\ build -CompilerSet errorformat= - \%-G#\ %.%#, - \%A%f:%l:%c:\ %m, - \%A%f:%l:\ %m, - \%C%*\\s%m, - \%-G%.%# - -let &cpo = s:save_cpo -unlet s:save_cpo - -" vim: sw=2 sts=2 et - -endif if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'go') == -1 " Copyright 2013 The Go Authors. All rights reserved. -- cgit v1.2.3