Chris Holland

Results 465 comments of Chris Holland

Hmm, it's already using `osc_styles.smallButtonsLlabel`. ```lua local osc_styles = { smallButtonsLlabel = "{\\fscx105\\fscy105\\fn" .. mp.get_property("options/osd-font") .. "}", } --cy_sub ne = new_element("cy_sub", "button") ne.enabled = (#tracks_osc.sub > 0) ne.content =...

The only time I've gotten that error for a valid reason was when the video had a unplayable part (at the end). Press the ~ key to see the logs....

Before I ended up using mpv_thumbnail_script for thumbnails, I tried doing thumbnails in a blocking manner inside `osc_tethys.lua`. It was supposedly working with `mpvnet` in the path. https://github.com/Zren/mpv-osc-tethys/issues/1#issuecomment-1105689980 I may...

* osc.lua: https://github.com/po5/thumbfast/commit/d72b88c831abf2802d27fd0f7291bb604cedf23a * progressbar: https://github.com/po5/thumbfast/commit/13084536fc45f5d111d55b79af9a7f76b34b01cc * uosc: https://github.com/tomasklaen/uosc/pull/213 Hmm, so it spawns a mpv background process with an open pipe. When you need the thumbnail, it will send a...

Found the reason for the bug. You're using: ``` if (!(block instanceof InventoryHolder)) return false; ``` instead of: ``` if (!(block.getState() instanceof InventoryHolder)) return false; ``` https://github.com/Zren/HawkEye/blob/master/src/main/java/uk/co/oliwali/HawkEye/entry/ContainerEntry.java#L40

I've also noticed that any item with a data/damage value will not revert. Which probably means a custom inv.addItem() / .remItem().

I tried seeing how far I could get with trial and error similar to what you were doing @d-s-x. I'm up to mpv v0.18.0 so far, though I usually commented...

Probably need to do this: https://github.com/Zren/atom-sublime-select/blob/master/lib/sublime-select.coffee#L45-L47 as I didn't get any jumping after that commit. Basically you need the: `+ editorView.scrollLeft()` It might also be to me copy+pasting the selection...

My fork only binds the Middle mouse button to the cursor. I copy pasta'd the selection code from atom's source. I still have to run through it's performance though. One...

I don't quite understand the need to bundle the official `autoload.lua` script inside `tethys.lua`. Is there a change that is necessary or something? Or GUI toggle? Or is this just...