Evan Purkhiser
Evan Purkhiser
@astier You can just background it. it will open the file once you bring nvim to the forground. I wrote a script for this https://github.com/EvanPurkhiser/dots-personal/blob/master/base/bash/functions.d/vim-singleton
How about `-r` for `--reinstall`. Which will force reinstalling of the selected configuration files (even if they haven't changed). Which will also run the install scripts. Or do you think...
@countsudoku I'm definitely open to something like that. I've been quite busy for the past few months and unforunately have not had the time to work on a refactored version...
I like this idea, and I know I considered it at some point after the fact. I think the reason I never got around to it was because it would...
Absolutely, feel free!
I like the idea of verbosity. I'd like to keep the UI logic out of the two classes. So I'm thinking some kind of notification/signaling/event manager object that can be...
I wasn't thinking anything complicated, just something like ``` py class NotificationManager(object): def __init__(self): listeners = {} def notify(self, event_name, *args, **kwargs): for subscriber in self.listeners: subscriber(*args, **kwargs) def subscribe(self,...
> By default releases from master generate pre-releases, in which case the changelog should only contain entries dating back to the previous pre-release If I create a pre-release from every...
Yes that is correct @marvinpinto. Sorry for this late reply, I've also been a little busy.
Unfortunately we use `statsPeriod` a LOT in UI code. There are ~400 instances of it right now. A majority of them are likely for the variant of this parameter that...