SafariMonkey

Results 19 comments of SafariMonkey

I had the same issue and adding a transaction around the insert (#146) fixed it for me. Maybe this can be considered fixed? @dflock can you test with the latest...

I would suggest keeping the previous value (if set) using something like `export MCFLY_LIGHT="${MCFLY_LIGHT:-TRUE}"` ([`bash`](https://wiki.bash-hackers.org/syntax/pe#use_a_default_value) , [`zsh`](https://zsh.sourceforge.io/Doc/Release/Expansion.html#Parameter-Expansion)), which seems to be [roughly equivalent to](https://stackoverflow.com/a/54524966/7177899) changing to `test -z MCFLY_LIGHT; and...

Here is what it looks like on my 5K iMac: ![image](https://user-images.githubusercontent.com/2837174/42028835-664e4946-7ac5-11e8-8cf8-6fed982ba98a.png) As you can see, it's noticeably blurry relative to the rest of the page. I also notice now that...

> ```shell > # update all packages (repo + AUR), continue on errors > yay -Quq | while read p; do yes | yay -S $p || echo $p >>yay-failed.log;...

I had the exact same issue and I resolved it by changing my loop over a map to a loop over a slice of two-field structs. I am guessing that...

Thanks for responding so quickly! That approach makes sense to me, and I wondered about the possibility before going for the smaller change for the PR. I was originally going...

Personally, I'm not particularly involved in this project currently. I just noticed the problem while I was attempting again to implement the above-mentioned panes concept and wanted to draw attention...

I'm sorry that this was somewhat forgotten, I wrote a long reply when it was originally posted and accidentally closed the tab and lost it. I've been meaning to rewrite...

I was looking into this literally this evening, and it looks to me like the easiest way to start is by forking rust-analyzer and implementing some changes without significant regard...

I am making progress on this. I will share when I have something to show.