Yiteng Zhang.

Results 45 comments of Yiteng Zhang.

Can you provide more example about what you want? I cannot fully understand it.

You can try my configuation: ``` tnoremap tnoremap tnoremap tnoremap tnoremap N tnoremap Nk tnoremap Nj ``` and you can swith from and to REPL using `` and ``

能给我具体的怎么复现的方法么?我无法复现这个bug

repl#GetConsoleName 是在 repl/autoload 里定义的,怎么会出现Unknown function呢?

``` :REPLToggle python2 ``` 即可。

`:redraw!` 可以解决这个问题么?

是不是你多选了呢?不能用`vaw`进行选择,你可以使用比如`vfs`, `vfd`进行选择。

the biggest problem is how to get the help document of the function for example if you call a function `np.exp`. How to know if it is the `exp` function...

I can implement a solution but I don't know if it is what you want. For example, if the cursor in on `np.exp` and press some button, then `help(np.exp)` is...

现在的问题是这样的,如果新开一个python窗口,直接发送 help(np.exp) 过去会出现 np not defined 的情况,所以一定要提前告诉帮助的python窗口 np.exp 是什么,所以如果新打开一个python窗口,需要同时把 `import numpy as np` 也发送过去。