Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: syscrusher/golang.tmbundle
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: infininight/golang.tmbundle
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 1 commit
  • 8 files changed
  • 1 contributor

Commits on Oct 8, 2018

  1. Use ruby18 for ruby commands

    TextMate library methods still depend on this version of ruby and the Mojave update was tripping up some of the commands due to the default ruby version.
    infininight committed Oct 8, 2018
    Copy the full SHA
    bbce64a View commit details
4 changes: 2 additions & 2 deletions Commands/Build.tmCommand
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::go "build", :verb => "Building"</string>
Go::go "build", :verb =&gt; "Building"</string>
<key>input</key>
<string>document</string>
<key>inputFormat</key>
2 changes: 1 addition & 1 deletion Commands/Documentation.tmCommand
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::gogetdoc
4 changes: 2 additions & 2 deletions Commands/Install.tmCommand
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::go "install", :verb => "Installing"</string>
Go::go "install", :verb =&gt; "Installing"</string>
<key>input</key>
<string>document</string>
<key>inputFormat</key>
2 changes: 1 addition & 1 deletion Commands/Lint.tmCommand
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<key>beforeRunningCommand</key>
<string>saveActiveFile</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::golint
2 changes: 1 addition & 1 deletion Commands/MetaLinter.tmCommand
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<key>beforeRunningCommand</key>
<string>nop</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::gometalinter
4 changes: 2 additions & 2 deletions Commands/Run.tmCommand
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::go "run", :verb => "Running"
Go::go "run", :verb =&gt; "Running"
</string>
<key>input</key>
<string>document</string>
4 changes: 2 additions & 2 deletions Commands/Test.tmCommand
Original file line number Diff line number Diff line change
@@ -7,10 +7,10 @@
<key>beforeRunningCommand</key>
<string>saveModifiedFiles</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::go "test", :verb => "Testing"
Go::go "test", :verb =&gt; "Testing"
</string>
<key>input</key>
<string>document</string>
2 changes: 1 addition & 1 deletion Commands/Vet.tmCommand
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@
<key>beforeRunningCommand</key>
<string>nop</string>
<key>command</key>
<string>#!/usr/bin/env ruby
<string>#!/usr/bin/env ruby18
require "#{ENV['TM_BUNDLE_SUPPORT']}/gomate"
Go::go "vet", :verb =&gt; "Vetting"