├── .gitignore ├── .tern-project ├── GoHintFormatter.js ├── GoHintProvider.js ├── LICENSE ├── main.js ├── node ├── GoHinterDomain.js ├── ProcessUtils.js └── which │ ├── LICENSE │ ├── README.md │ ├── bin │ └── which │ ├── package.json │ └── which.js ├── package.json ├── readme.md ├── res └── mainToolbar.html └── style └── main.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/.gitignore -------------------------------------------------------------------------------- /.tern-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/.tern-project -------------------------------------------------------------------------------- /GoHintFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/GoHintFormatter.js -------------------------------------------------------------------------------- /GoHintProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/GoHintProvider.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/LICENSE -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/main.js -------------------------------------------------------------------------------- /node/GoHinterDomain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/GoHinterDomain.js -------------------------------------------------------------------------------- /node/ProcessUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/ProcessUtils.js -------------------------------------------------------------------------------- /node/which/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/which/LICENSE -------------------------------------------------------------------------------- /node/which/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/which/README.md -------------------------------------------------------------------------------- /node/which/bin/which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/which/bin/which -------------------------------------------------------------------------------- /node/which/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/which/package.json -------------------------------------------------------------------------------- /node/which/which.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/node/which/which.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/readme.md -------------------------------------------------------------------------------- /res/mainToolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/res/mainToolbar.html -------------------------------------------------------------------------------- /style/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/David5i6/Brackets-Go-IDE/HEAD/style/main.css --------------------------------------------------------------------------------