lang/{go,javascript}: add READMEs
This commit is contained in:
parent
3445e44926
commit
733f371607
2 changed files with 34 additions and 0 deletions
18
modules/lang/go/README.md
Normal file
18
modules/lang/go/README.md
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Go
|
||||
|
||||
Go support, including auto-completion (gocode), eldoc support (go-eldoc), REPL
|
||||
support (gore), refactoring commands (gorename), syntax-checking (flycheck),
|
||||
auto-formatting (gofmt), and snippets (yasnippet).
|
||||
|
||||
Snippets can be found in `private/hlissner/snippets/go-mode`.
|
||||
|
||||
## External Dependencies
|
||||
|
||||
Run `make bootstrap go` to install these.
|
||||
|
||||
+ Go (`brew install go`, `pacman -S go`)
|
||||
+ gocode `go get -u github.com/nsf/gocode` (completion)
|
||||
+ gore `go get -u github.com/motemen/gore` (REPL)
|
||||
+ guru `golang.org/x/tools/cmd/guru` (code navigation commands)
|
||||
+ gorename `golang.org/x/tools/cmd/gorename` (refactoring commands)
|
||||
|
16
modules/lang/javascript/README.md
Normal file
16
modules/lang/javascript/README.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# javascript
|
||||
|
||||
Javascript support, including auto-completion (tern), REPL support
|
||||
(nodejs-repl), refactoring commands (js2-refactor), and syntax checking
|
||||
(flycheck).
|
||||
|
||||
Includes coffescript and jsx support, as well as project minor modes for nodejs
|
||||
projects (with a package.json) or launchbar 6 actions.
|
||||
|
||||
## External Dependencies
|
||||
|
||||
Run `make bootstrap js` to install these.
|
||||
|
||||
+ NodeJS & NPM (`brew install node`, `pacman -S nodejs npm`)
|
||||
+ tern: `npm -g install tern` (for completion)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue