Andrew Radev

Results 225 comments of Andrew Radev

> Is there a way for me to make Sideways bindings take a count? I'm in the middle of implementing something similar for the text objects, in issue #7. It...

I think github may have stripped some code, I guess the mappings you have are like this: ``` vim nnoremap gs :SidewaysRight nnoremap gS :SidewaysLeft ``` Is this correct? Also,...

That's good news, I guess. And yeah, I need to get to the counts, but I've been a bit busy for a while. I'll see what I can do about...

There's some interesting layers to the problem here. In general, the plugin couldn't handle unbalanced brackets. It expects that an expression is valid, because I honestly don't know how I'd...

> The jumps_to_here text is selected instead of joint. Hm, something to do with the string matching, I think. I've adjusted one of the search patterns, and it seems to...

> Sideways is realy a great plugin that saves me a lot of time. Thanks, I'm happy to hear that. The problem with supporting this use case is that, currently,...

This is the current contents of the class, more or less: ``` ruby class Activity < ::PublicActivity::Activity def self.unread where(read: false) end def unread? not read? end def created_on created_at.to_date...

> Though one thing I see missing is we must make sure the custom Model inherits from PublicActivity::Activity. I can already see people forgetting this and destroying the functionality. Yeah,...

> I think code extending the Activity class can be stored in app/models, or p_a can be adjusted to allow for that. If that's possible, that would be a reasonable...

No worries, I know how hard it is to keep up with maintenance of an open source project. Let me know if there's anything I can help out with.