Shougo

Results 758 comments of Shougo

上記の指摘を取り込みました。

本日、少し記事をアップデートしました。

I think `cmd` should not be loaded on `CmdlineEnter` or `CmdlineChanged`. Because the commands may be called from cmd-mappings. It does not call command line events.

`getregionpos()` is added.

Hm... It seems the snippet is broken. It is truncated? Note: https://github.com/hrsh7th/nvim-cmp/commit/b356f2c80cb6c5bae2a65d7f9c82dd5c3fdd6038 I think it truncate.

Hm. I think the buffer is already removed. buffer id check is needed.

OK. I have closed the PR. nil check is better than my fix.

It seems `misc.merge()` is broken. ```lua misc.merge = function(tbl1, tbl2) local is_dict1 = type(tbl1) == 'table' and (not islist(tbl1) or vim.tbl_isempty(tbl1)) local is_dict2 = type(tbl2) == 'table' and (not islist(tbl2)...