a

2019-04-01から1ヶ月間の記事一覧

IntelliJ shortcut

編集 // ★★★ テンプレートを開く : Ctrl + J // ★★★ リファクタリングメニュー表示 : Ctrl + Alt + Shift + T // ★★★ Scratch : Ctrl + Shift + Alt + Insert // if、while、forなどで囲む : Ctrl + Alt + T // マルチカーソル : 特定文字列を選択してから A…

Atom shortcut

terminal 開く shift + alt + j 閉じる shift + alt + x フォーカス ctrl + alt + f 次の terminal shift + alt + k

golang 初期設定

PATH gopath : C:\Users\{username}\go goroot : インストールしたgoのルートディレクトリ C:\Users\{username}\app\go (binのあるディレクトリ) Hello World package main import "fmt" func main() { fmt.Println("Hello, 世界") } RUN go run hello.go Bu…