Tianyang Zhou

Results 9 comments of Tianyang Zhou

> I can't reproduce your problem, could you diagnose this with: > > ```viml > :echo asyncrun#get_root('%') > ``` > > And see if the output is correct. Yes, it...

> what is your vim version number ?? operating system ?? My vim version is 8.2, OS is archlinux and kernel version is 5.7.2 I noticed a trick that if...

Ok, I will have a try soon.

> Hey, > > I was having some issues with this with respect to 2 usecases: > > * plugin https://github.com/terryma/vim-multiple-cursors, which seems to trigger a change event each character...

I add this code in my config as the temporary solution: ```lua local util = require("trouble.util") local util_jump_to_item = util.jump_to_item util.jump_to_item = function(win, precmd, item) -- add mark to jump...

> * Dispatch `ScrollDown`, `ScrollUp`, `ScrollLeft`, `ScrollRight` to the `scroll` method of _each_ component, e.g.: > ```lua > function Current:scroll(event, step) > -- event = MouseEvent { column = 10,...

I've finished the requested change, could you have a look at it?

Finished the review requests as described (if I understand correctly).

> Does click and drag work for selecting items? Like spacebar selection I didn't implement these in this PR. This PR only has built-in support for scroll and click. However...