You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ time node js/vimlparser.js autoload/vimlparser.vim > /dev/null
46
46
node js/vimlparser.js autoload/vimlparser.vim > /dev/null 0.77s user 0.04s system 125% cpu 0.644 total
47
47
48
-
$ go get github.com/haya14busa/go-vimlparser/cmd/vimlparser
48
+
$ go get github.com/vim-jp/go-vimlparser/cmd/vimlparser
49
49
$ time vimlparser autoload/vimlparser.vim > /dev/null
50
50
vimlparser autoload/vimlparser.vim > /dev/null 0.25s user 0.03s system 114% cpu 0.244 total
51
51
```
@@ -59,25 +59,25 @@ vimlparser autoload/vimlparser.vim > /dev/null 0.25s user 0.03s system 114% cpu
59
59
| node | 0.77s |
60
60
| Go |**0.25s**|
61
61
62
-
Note that, in addition to the Go lang speed, I added [performance improvement](https://github.com/haya14busa/go-vimlparser/pull/4) for Go implementation.
62
+
Note that, in addition to the Go lang speed, I added [performance improvement](https://github.com/vim-jp/go-vimlparser/pull/4) for Go implementation.
63
63
64
64
### Rich interface compared to other implementation
65
65
66
66
go-vimlparser is written in Go which is typed language and I added Go-ish interface,
67
-
so you can see each node fields. e.g. https://godoc.org/github.com/haya14busa/go-vimlparser/ast#Function
67
+
so you can see each node fields. e.g. https://godoc.org/github.com/vim-jp/go-vimlparser/ast#Function
0 commit comments