Pavel Volokitin
Pavel Volokitin
Thank you for reporting the issues. I've been investigating the issue with the `` key and still can't find a way to encode ``. I created an issue to track...
Now the process list width can be set in `mprocs.yaml`: ```yaml procs_list_width: 20 ```
Fixed since 0.6.1
I just released mprocs 0.6.3 with a more robust copy implementation. I hope it works for everyone. I will close this issue, please open new issues if you face any...
@arifd On Linux we check which copy tool is available from this list: - `wl-copy` - `xclip` - `xsel` - `termux-clipboard-set` - `tmux` If none of those tools exist in...
@arifd To copy text on x11 mprocs tries to use `xsel` or `xclip` commands. I guess that you don't have either of those available. Can you try to install either...
@arifd I used that crate and tried others similar. But they all segfault on linux without x11. So for now I just copied the way neovim does copying. I think...
In my opinion `waitForStyles` should be synchronous (will styles be applied synchronously after `style` tag injection?). It will make things simpler. What do you think? I'd be happy to send...
I checked if injected styles are applied immediately. And the answer is no, unfortunately. So probably we can't even implement synchronous `waitForStyle` with current approach. My idea of flushing styles...
@jlfwong Yeah, I suck at explaining what I mean :) I just ran this code: ``` componentDidMount() { const dom = ReactDOM.findDOMNode(this); console.log(dom.offsetHeight); // 10 require('aphrodite/lib/inject').flushToStyleTag(); console.log(dom.offsetHeight); // 10 setTimeout(()...