Amar Paul
Amar Paul
see also #96
Here's some galleries: - https://www.reddit.com/r/linuxhardware/comments/idarg1/mutantc_modular_and_open_source_handheld_pc_more/ - https://www.reddit.com/r/dogelore/comments/jbu197/he_chose_poorly/ Apparently though, this code might not always download galleries in the proper order. Can you hold on merging this until I fix that?...
Thanks for the advice! I'm not as familiar with `praw`, didn't realize it would make so many requests. I'll take a stab at these changes.
I've used [tqdm](https://github.com/tqdm/tqdm#iterable-based) before to add progress bars to python scripts in a really nice+easy way, if you're still considering this. It also supports [nested progress bars](https://github.com/tqdm/tqdm#nested-progress-bars).
You can do this with modes, although it can be unwieldy for many double-tap combinations: ``` # declare a mode called "fake" :: fake # activate the mode with right...
Good point. For chained commands, I think it's fairly simple: ``` mod + {k1,k2} : cmd1 {arg1,arg2}; cmd2 ``` parses to: ``` mod + k1: cmd1 arg1; cmd2 mod +...
Linking this older issue https://github.com/neomake/neomake/issues/2302 The solution posted there is not robust, since `sudo pip3 install`ing anything is discouraged (so `python3 -m mypy` won't work). A halfway solution that "works"...
Bit of a workaround, but I wrote a simple vimfunction to manually set `g:neomake_java_javac_classpath` (when working on a gradle project) if [javacomplete2](https://github.com/artur-shaik/vim-javacomplete2/) is installed. I dropped this file in `~/.vim/after/ftplugin/java`,...
For neomake maintainers, the way javacomplete2 generates the gradle classpath is [here](https://github.com/artur-shaik/vim-javacomplete2/blob/29fee1cb4554eef3e5a30984ac7a389766ee4da4/autoload/javacomplete/classpath/gradle.vim). I tried implementing this in neomake's java makers, but I couldn't quite figure it out :(
That would work too, although I don't know whether neomake maintainers will want to depend on another plugin for one build system in one language they supoort