Yu Watanabe

Results 9 issues of Yu Watanabe

In the current version, lgo always prints the result of the last expression. Because of this spec, lgo prints (n, error) pair if the last statement of a code block...

``` F0227 22:36:51.068979 18784 gojupyterscaffold.go:181] Failed to echo heartbeat request: interrupted system call goroutine 7 [running]: github.com/golang/glog.stacks(0xc4203b6e00, 0xc4204980a0, 0x72, 0x9d) /home/yunabe/local/gocode/src/github.com/golang/glog/glog.go:769 +0xd1 github.com/golang/glog.(*loggingT).output(0x86a0a0, 0xc400000003, 0xc4204162c0, 0x85fe9a, 0x14, 0xb5, 0x0) /home/yunabe/local/gocode/src/github.com/golang/glog/glog.go:720...

lgo does not complete import paths now. We want to complete import paths for these patterns: ``` import [cur] import ( [cur] import "a/b[cur] import "[cur] ```

good first issue

### Actual ``` import ( "bytes" ) var buf bytes.Buffer buf.[cur] y := 10 ``` When [Tab] is pressed at [cur], no candidate is suggested. ### Expected The methods of...

From notebooks, users can use `"tslab"` module to access tslab utilities. ```typescript import * as tslab from "tslab"; tslab.display.jpeg(img); ``` But this does not work well when other libraries want...

To bypass #1, tslab converts (1) TypeScript into ES2015 module JS with TS compiler, (2) then convert it into CommonJS module JS. In (1), TypeScript does not check the colisions...

**How to reproduce** ``` yarn test ``` **Problem** ``` Jest did not exit one second after the test run has completed. This usually means that there are asynchronous operations that...

**Input markdown:** ``` $$\begin{pmatrix}a&b&c\\d&e&f\end{pmatrix}$$ ``` **Expected:** A beautiful 3x2 matrix is rendered. **Actual:** The equation is just copied to ``. ``` \begin{pmatrix}a&b&c\\d&e&f\end{pmatrix} ``` **Versions** ``` "vuepress": "^1.0.0-alpha.47", "vuepress-plugin-mathjax": "^1.2.4" ```...

syntax

It's not a big deal when only a few people are working on the project. But it makes things slower meaninglessly if many people commit code with their favarite code...