- Quit from VSCode
gocode close
- Check that there is no
gocode
process - Remove
$GOPATH/pkg
go clean -cache
- Update tools: https://github.com/Microsoft/vscode-go/wiki/Go-tools-that-the-Go-extension-depends-on (gocode now in github.com/mdempsky/gocode)
go install -v all
- Run VSCode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes fadein { | |
from { | |
opacity: 0; | |
} | |
to { | |
opacity: 1; | |
} | |
} | |
#sVim-command { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" let | |
let scrollstep = 130 | |
let homeurl = "favorites://" | |
let newtaburl = "favorites://" | |
unmap "space" | |
unmap "left" | |
unmap "right" | |
unmap "up" | |
unmap "down" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package echomw | |
import ( | |
"time" | |
"github.com/labstack/echo" | |
"go.uber.org/zap" | |
"go.uber.org/zap/zapcore" | |
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"os" | |
"os/exec" | |
) |