Anirudh Haritas Murali

Results 29 comments of Anirudh Haritas Murali

It does make sense, thanks. I read the vim popup api docs, and one of the options is a callback as you said, so that's fine

From the vim popup api docs, it seems that the callback works this way - * It is used only when a filter is also specified * It is called...

Any ideas on how to implement `filter`? My first idea was to map all the keys to a wrapper, which calls the function for the pressed key and returns the...

@tjdevries could you take a look at this when you're free? I'm a little busy rn but I will get back to it. Just let me know what you think...

I'd like to try this. My initial thoughts are - add a 'pinned' attribute to the note, and while sorting the note list, process the pinned notes first. This can...

This feature is being discussed on the forum right now. Could you please share your ideas there?

This seems to have stopped working on awesome master. The workaround mentioned also does not work, as it appears that the notification object no longer has a `clients` field _Edit_:...

I'm not very sure. It was definitely working in 4.3, and I just added the `destroyed` listener today, so I have a very small sample size. I started looking into...

Alright, it now works for me using the listener given above. Not sure if it was a change in API or if the snippet was wrong, but the second argument...

Sorry for the abrupt disappearance. This is part of my config for notifications - ```lua naughty.connect_signal("destroyed", function(n, reason) if not n.clients then return end if reason == require( "naughty.constants" ).notification_closed_reason.dismissed_by_user...