Ivan Tham

Results 390 comments of Ivan Tham

I think that's because it's not the first and last item in a named node. https://github.com/ikatyang/tree-sitter-toml/blob/7cff70bbcbbc62001b465603ca1ea88edd668704/grammar.js#L48-L55 ```javascript table: $ => seq( "[", choice($.dotted_key, $._key), "]", $._line_ending_or_eof, repeat(choice($.pair, newline)), ), ```...

@Kethku If anyone were to take on GUI probably you are the one that is most familiar with it since you did neovide. My thought is that we may want...

One thing I noticed as well when `O` on first line, it will indent the first line and your cursor will jump to second line ``` #(|)#import line ``` `o`...

How about using mouse as an alternative method to mark?

I think kakoune approach is nice for people who can do many terminals (like the time when I was using a tiling vm). Otherwise it doesn't help much. I still...

> two user clients I wish the two clients can have different configurations but that is even harder.

I personally think this should be core feature. We already have like skim like thing, implementing ripgrep is just near.

I don't think we will pull in ripgrep. We may be implementing our own which is slightly slower compared to ripgrep but work well for our usecase.

Interactive prompt is not available yet so it will be kept open.

Would be interesting to have a scrollbar + minimap (with the colored find), but I feel like it is kinda wasteful for the space on terminals like 80x24 (I still...