Results 523 comments of L3MON4D3

I'll pin this issue for now, we should switch to providing the static library from the get-go (@leiserfg you were right :sweat_smile:)

Oh dammit :facepalm: But why not? How is `luaL_newlib` resolved?

Ahh okay, that's pretty cool Thank you! I'll upload some patches and ask the MacOS-users in the other thread to test it :D

Yeah, should be possible: check out `condition` and `show_condition`, you'd have to manually get the line the cursor is on (`:h nvim_win_get_cursor`, `:h nvim_buf_get_lines`), but should be pretty straightforward :)

Oh, you can get the full line by querying the current position of the cursor and then getting the line, for which you can use the two api functions I...

Oh, that's very valid. Unfortunately, I've no idea how to detect this state, and prevent auto-expansion. If you want to play around with it, the autocommands for autosnippets are defined...

Hi :) I tried to reproduce this, but couldn't :/ Could you try reducing your setup until the error disappears? One probably source (given the commit) is the new config-option...

Hey, I couldn't look into this until now, sorry to keep you waiting. I think the main issue is that we completely assume that the buffer/window does not change once...

Ah, `delete_check_events` only looks at the current snippet. Looking at all snippets would take a bit longer, but might be a nice extension

Cool idea! You could replace `jump` with a function which * removes previous marker * jumps * sets next marker The main issue are the markers: they have to move...