K.Takata

Results 291 comments of K.Takata

本家に `plugin-netrw` タグを用意したった。 https://github.com/vim/vim/labels/plugin-netrw

今度こそGitHubに移行させよう! https://groups.google.com/d/topic/vim_dev/7pSaI10tCD8/discussion

`list` 型で空のリストを扱えない。 ```vim def Func(): list return [] enddef ``` `E1013: type mismatch, expected list but got list`

float2nr はありますよね?

動きました ```vim def Proc(n: float): number return float2nr(n) enddef echo Proc(3.14) ```

README_VIM9.md に記載ミス https://github.com/brammool/vim9/pull/1

todo.txt が更新されました。 https://github.com/vim/vim/commit/560979ed4f0216f902a2c247e937f00a27dcb198#diff-38d7929bd26d74d92ceddf984bbfc8dbR45-R78 `type|type` 型が未実装なのが載ってないなぁ

`:help vim9-types` ``` The following builtin types are supported: bool number float string blob list dict (a: type, b: type): type job channel ``` `func` が載っていない。(さらに言えば、vim9compile.c の parse_type() では "func"...

リストに対して `+=` が使えない。おそらく Blob も。 ```vim li: list = [] li += ['foo'] ``` `E1013: type mismatch, expected number but got list` 一応、ソースには TODO が書かれている。 https://github.com/vim/vim/blob/c2a4b35b86fa8b28a34a9aea8ad16c87dbc6d834/src/vim9compile.c#L3483-L3489

https://github.com/vim-jp/issues/issues/1332#issuecomment-581258934 PR出してみた。https://github.com/vim/vim/pull/5669