Sorin Ionescu
Sorin Ionescu
There are other themes that use `reset-prompt` without the period, some external, for which I do not have write access. There is also a `reset-prompt` in _modules/editor/init.zsh_. Also, I think...
I have thought about that as well. It would be nice to know how many people actually have multiple GitHub accounts. I'd bet they are a minority. That said, GitHub...
Use `open` on Mac OS X.
Using dashes for an alias might cause problems. Are there any known conflicts?
I would rather not get the name of the branch. I like to name my branches **issue/503** and **pull/504**. The advantage, besides being concise, is that I can easily extract...
You need to have pull or pr in the name, or pull requests can be confused with other branches. There are a lot of pull request scripts around the net....
I would rather have it named **pull/158**. All pull request branches will be sorted and kept together. GitHub names them the same way. For example you can execute `git clone...
Then again, perhaps everybody has a way to name pull requests. Perhaps the naming convention should be configurable via ~/.gitconfig. I name it **pull/158**. Someone else might name it **pr/158**,...
The verb `fetch` implies that it's actually downloading them, not just displaying them. ``` sh # List everything ghi list # List issues ghi list --issue # List pull requests...
If none of the [NSWindow notifications](http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/ApplicationKit/Classes/NSWindow_Class/Reference/Reference.html) are appropriate, perhaps you can set 'visible at launch' to false, swizzle, then make it visible. A convoluted way would be to create your...