Carlos Esparza
Carlos Esparza
Here's the relevant part of the config ```yaml swipe: 3: begin: command: |- sedGetValue='s/.*=\(.*\)/\1/' old_win=$(xdotool getactivewindow) id=$(xdotool getmouselocation --shell | grep WINDOW | sed 's/.*=\(.*\)/\1/') if [ $old_win != $id...
Although I've been thinking that probably the best solution for my problems is to switch to a client-server model where fusuma just writes someting like `3finger-begin`, `3finger-right`, etc. to a...
I went ahead and wrote an executor plugin: ```ruby # frozen_string_literal: true module Fusuma module Plugin module Executors # Server executor plugin class ServerExecutor < Executor # executor properties on...
Amazing, that was so fast! Is there a reason you're not just checking `itemList.length > 1`, regardless of whether we're in single-app mode or not? Also can I ask what...
The newest version is working fine for me. The previous commit also worked fine. Works as intended and I haven't noticed any bugs. Although I commented out the lines ```js...
> are the package-lock.json changes intentional No, sorry.
I tried doing something like that. I ran into two issues though. First, the changes from the autocmds start polluting the undo list. Second, processing the buffer twice per change...
> For reference, how are you benchmarking things here? I mean, when you refer to an x % increased performance, what is the exact approach to calculate the speedup? Did...
OK I've just been testing with vim, and everything looks good. Output is identical to 80c9bc17 and speedup is ~83%. I had to modify the testing script a bit: ```bash...
> I'm still very surprised by the conclusion that the old regex engine is faster - it really "feels wrong". I'm curious if we should ask some of the Vim...