Rogin Farrer

Results 43 comments of Rogin Farrer

I was able to recreate this behavior with the following in my config: ```lua local function copyToClipboard(mode) require('gitlinker').get_buf_range_url( mode, { action_callback = require('gitlinker.actions').copy_to_clipboard } ) end local function openInBrowser(mode) require('gitlinker').get_buf_range_url(...

No worries about the late reply, enjoy your holiday! > The decision to not provide native vim commands was deliberate. It goes in line with most new lua plugins and...

I should add, I respect your decision since it's your plugin! Just interested in continuing the conversation.

Actually I think there's a bug with the range option in the plugin. I suggest opening a new issue for it

Turns out I can fix this by changing the event to `BufEnter` only: ```vim autocmd BufEnter * if &ft == '' | set ft=markdown | endif ``` I'll leave this...

If it doesn't add too much complexity, you're welcome to take a shot at it! I haven't dug into animating width in a long time, but I think it could...

Just wanted to say that I'd love this feature! Main use case is that I have an Adblock setup on my home network. I'd like to be able to disable...

Just wanted to throw in that I'm having this issue, too. With a function: ![Screen Shot 2020-01-24 at 12 50 37 PM](https://user-images.githubusercontent.com/9063669/73091318-31411c80-3ea8-11ea-93f2-016f1fbb4976.png) Without a function (which works): ![Screen Shot 2020-01-24...

Thanks for the report, this is one of the smaller edge cases when I developed types that I wasn't sure how to resolve. Currently the types accept any breakpoint theme...

Not at the moment. That's probably next for this library, and I've been thinking about incorporating some of the API innovations from newer libraries, like Stitches, that supports compound variants.