-
Notifications
You must be signed in to change notification settings - Fork 9
Comparing changes
Open a pull request
base repository: syscrusher/golang.tmbundle
base: v3.2.0
head repository: syscrusher/golang.tmbundle
compare: master
Commits on Oct 14, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 0fa56a5 - Browse repository at this point
Copy the full SHA 0fa56a5View commit details
Commits on Oct 16, 2015
-
Merge pull request #10 from mkaz/master
Fix duplicate `go get` in imports statement
Configuration menu - View commit details
-
Copy full SHA for 432af5b - Browse repository at this point
Copy the full SHA 432af5bView commit details
Commits on Oct 18, 2015
-
Fixed warning: ``` warning: code.google.com is shutting down; import path code.google.com/p/go.tools/cmd/godoc will stop working the code.google.com/p/go.tools/cmd/godoc command has moved; use golang.org/x/tools/cmd/godoc instead. ```
Configuration menu - View commit details
-
Copy full SHA for f7e24e6 - Browse repository at this point
Copy the full SHA f7e24e6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6201a07 - Browse repository at this point
Copy the full SHA 6201a07View commit details -
Configuration menu - View commit details
-
Copy full SHA for f490d6f - Browse repository at this point
Copy the full SHA f490d6fView commit details -
Merge pull request #12 from msoap/hidpi_icons
Changed icons for completion menu to HiDPI version
Configuration menu - View commit details
-
Copy full SHA for 9faf1ad - Browse repository at this point
Copy the full SHA 9faf1adView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93b9280 - Browse repository at this point
Copy the full SHA 93b9280View commit details
Commits on Nov 26, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 6eac772 - Browse repository at this point
Copy the full SHA 6eac772View commit details
Commits on Nov 27, 2015
-
Grammar: Fix scope identifiers to allowed ones
See: * Bundle Development -> Language Grammars -> TextMate Scopes * https://gist.github.com/lcaballero/5035909#file-tmlaguage-syntax-keys-L2307
Configuration menu - View commit details
-
Copy full SHA for 88bbe65 - Browse repository at this point
Copy the full SHA 88bbe65View commit details -
Grammar: Simplify & shorten regexes
1. [[:alnum:]_] -> \w 2. [[:blank:]] -> \s 3. [:digit:] -> \d 4. Remove excessive (?: ... )
Configuration menu - View commit details
-
Copy full SHA for f070508 - Browse repository at this point
Copy the full SHA f070508View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4fd348f - Browse repository at this point
Copy the full SHA 4fd348fView commit details -
Configuration menu - View commit details
-
Copy full SHA for a8328ab - Browse repository at this point
Copy the full SHA a8328abView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for d2b0efd - Browse repository at this point
Copy the full SHA d2b0efdView commit details -
Merge pull request #13 from nanoant/patch/pdf-completion-icons
Use scale independent PDF completion icons
Configuration menu - View commit details
-
Copy full SHA for 3cd7495 - Browse repository at this point
Copy the full SHA 3cd7495View commit details -
Merge pull request #14 from nanoant/patch/grammar-updates
Patch/grammar updates
Configuration menu - View commit details
-
Copy full SHA for 07d9f26 - Browse repository at this point
Copy the full SHA 07d9f26View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25ea2b5 - Browse repository at this point
Copy the full SHA 25ea2b5View commit details
Commits on Nov 30, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 04083c4 - Browse repository at this point
Copy the full SHA 04083c4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4eb174d - Browse repository at this point
Copy the full SHA 4eb174dView commit details
Commits on Dec 1, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4372808 - Browse repository at this point
Copy the full SHA 4372808View commit details -
Merge pull request #15 from nanoant/patch/grammar-type-decl
Make Go.tmbundle understand type declarations
Configuration menu - View commit details
-
Copy full SHA for 520dd4f - Browse repository at this point
Copy the full SHA 520dd4fView commit details
Commits on Dec 2, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 9f4fca8 - Browse repository at this point
Copy the full SHA 9f4fca8View commit details
Commits on Dec 3, 2015
-
Merge pull request #18 from willfaught/master
Add a note about environment variables
Configuration menu - View commit details
-
Copy full SHA for 859c66a - Browse repository at this point
Copy the full SHA 859c66aView commit details
Commits on Dec 4, 2015
-
Configuration menu - View commit details
-
Copy full SHA for b4427d9 - Browse repository at this point
Copy the full SHA b4427d9View commit details
Commits on Dec 7, 2015
-
New HTML (Go) grammar for Go HTML templates
Includes support for indention and folding. More information about Go HTML templates can be found at: https://golang.org/pkg/html/template/
Configuration menu - View commit details
-
Copy full SHA for 197a72f - Browse repository at this point
Copy the full SHA 197a72fView commit details
Commits on Dec 11, 2015
-
Configuration menu - View commit details
-
Copy full SHA for 4fa99bf - Browse repository at this point
Copy the full SHA 4fa99bfView commit details
Commits on Dec 12, 2015
-
Configuration menu - View commit details
-
Copy full SHA for d1d3a80 - Browse repository at this point
Copy the full SHA d1d3a80View commit details
Commits on Dec 19, 2015
-
Merge pull request #19 from rdwampler/master
Use requiredCommands for goimports and golint
Configuration menu - View commit details
-
Copy full SHA for 3ee5bc8 - Browse repository at this point
Copy the full SHA 3ee5bc8View commit details -
Merge pull request #20 from nanoant/patch/go-html-template
New HTML (Go) grammar for Go HTML templates
Configuration menu - View commit details
-
Copy full SHA for fcdf6a9 - Browse repository at this point
Copy the full SHA fcdf6a9View commit details -
Merge pull request #21 from msoap/complete_fix
Don't save document before completion
Configuration menu - View commit details
-
Copy full SHA for a58a45e - Browse repository at this point
Copy the full SHA a58a45eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7cb7593 - Browse repository at this point
Copy the full SHA 7cb7593View commit details
Commits on Dec 21, 2015
-
Grammar: Fix var x = init(...) highlighting
This fixes change introduced in a8328ab that was adding type highlighting in `var x Type`. However the rule (.*)\s*(?:=|$) was greedy consuming everything until `=` or `$` (end of line). As a consequence it was effectively matching everything till end of line, consuming also `=` and everything that follows, resulting incorrect highlight, for eg.: var addr = flag.String("addr", ":8080", "TCP address to listen to") Now replacing RE to use lazy (non-greedy) (.*?)\s*(?:=|$) rule.
Configuration menu - View commit details
-
Copy full SHA for 6e3d229 - Browse repository at this point
Copy the full SHA 6e3d229View commit details
Commits on Dec 26, 2015
-
Merge pull request #22 from nanoant/patch/fixup-grammar
Grammar: Fix var x = init(...) highlighting
Configuration menu - View commit details
-
Copy full SHA for 5263bbb - Browse repository at this point
Copy the full SHA 5263bbbView commit details
Commits on Dec 31, 2015
-
struct { member } vs. type Foo struct { Bar string }
Configuration menu - View commit details
-
Copy full SHA for 82d13ce - Browse repository at this point
Copy the full SHA 82d13ceView commit details
Commits on Apr 10, 2016
-
Merge pull request #24 from jish/helpful-struct
A more helpful struct snippet
Configuration menu - View commit details
-
Copy full SHA for 01407ec - Browse repository at this point
Copy the full SHA 01407ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for ea01788 - Browse repository at this point
Copy the full SHA ea01788View commit details -
Partial fix for issue #26: Remove Ruby18 dependency where possible.
Most of the bundle is compatible with greater ruby versions, except the 'Open Package' command. That will be addressed in another commit.
Configuration menu - View commit details
-
Copy full SHA for dd5f608 - Browse repository at this point
Copy the full SHA dd5f608View commit details -
Configuration menu - View commit details
-
Copy full SHA for d95f487 - Browse repository at this point
Copy the full SHA d95f487View commit details
Commits on May 23, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 59c296e - Browse repository at this point
Copy the full SHA 59c296eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6fd548c - Browse repository at this point
Copy the full SHA 6fd548cView commit details
Commits on May 25, 2016
-
Configuration menu - View commit details
-
Copy full SHA for ce970fd - Browse repository at this point
Copy the full SHA ce970fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa8d016 - Browse repository at this point
Copy the full SHA aa8d016View commit details -
Feature: Completions include $GOPATH.
Previously we were not reasonably parsing and passing $GOPATH along to gocode.
Configuration menu - View commit details
-
Copy full SHA for d8c0e1f - Browse repository at this point
Copy the full SHA d8c0e1fView commit details -
Feature: Completions include current package.
Pass along path to current file and gocode handles the rest.
Configuration menu - View commit details
-
Copy full SHA for 4e69ce6 - Browse repository at this point
Copy the full SHA 4e69ce6View commit details -
Configuration menu - View commit details
-
Copy full SHA for e932933 - Browse repository at this point
Copy the full SHA e932933View commit details
Commits on Jun 7, 2016
-
Feature: Improved, expanded documentation coverage. Now includes all …
…variables and types. Adds new dependency: `go get -u github.com/zmb3/gogetdoc`. Requires Go 1.6+.
Configuration menu - View commit details
-
Copy full SHA for b19d188 - Browse repository at this point
Copy the full SHA b19d188View commit details
Commits on Aug 16, 2016
-
Remove unused require_cmd library include (#28)
This was missed in d092aba.
Configuration menu - View commit details
-
Copy full SHA for 02d18b2 - Browse repository at this point
Copy the full SHA 02d18b2View commit details
Commits on Aug 19, 2016
-
Revert "Remove unused require_cmd library include (#28)"
This reverts commit 02d18b2.
Configuration menu - View commit details
-
Copy full SHA for 2a503ab - Browse repository at this point
Copy the full SHA 2a503abView commit details -
Remove unused require_cmd include again. Substitute necessary escape_…
…codes include. Unify import quotation method and organization... -require ENV['TM_SUPPORT_PATH'] + '/lib/ui.rb' +require ENV['TM_SUPPORT_PATH'] + "/lib/ui.rb" require ENV['TM_SUPPORT_PATH'] + "/lib/escape.rb" -require ENV['TM_SUPPORT_PATH'] + "/lib/tm/require_cmd.rb" -require ENV['TM_SUPPORT_PATH'] + "/lib/tm/htmloutput.rb" +require ENV['TM_SUPPORT_PATH'] + "/lib/exit_codes.rb" require ENV['TM_SUPPORT_PATH'] + "/lib/web_preview" +require ENV['TM_SUPPORT_PATH'] + "/lib/tm/htmloutput.rb"
Configuration menu - View commit details
-
Copy full SHA for dcd0edd - Browse repository at this point
Copy the full SHA dcd0eddView commit details -
gomate: remove unused imports (escape, ui, web_preview, tm/require_cm…
…d). add explicit tm/process import (previously included through tm/executor).
Configuration menu - View commit details
-
Copy full SHA for 2491b60 - Browse repository at this point
Copy the full SHA 2491b60View commit details
Commits on Aug 20, 2016
-
Cleanup and documentation. Remove unnecessary escaping. Additional no…
…te about ENV vars. Remove Ruby 1.8 dependency for gomate.
Configuration menu - View commit details
-
Copy full SHA for e84addd - Browse repository at this point
Copy the full SHA e84adddView commit details
There are no files selected for viewing
This file was deleted.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.