Age | Commit message (Collapse) | Author |
|
Revert cab1ac6e682038b2ceca9d16f8c458c0e79149ca
The change from the above commit breaks opening a new emacs frame if
there isn't a existing frame open.
When emacs is running in daemon mode, there will always be a frame
associated with the daemon, even if there are no visible frames.
The lisp function `frame-list`, will always return 1 frame.
```
emacsclient --eval '(frame-list)'
(#<frame F1 0xa3c680>)
```
When an real frame is open, two frames are reported by the `frame-list`
function.
```
emacsclient --eval '(frame-list)'
(#<frame F1 0xa3c680> #<frame emacs Prelude - ~/oh-my-zsh/plugins/emacs/emacsclient.sh 0xf50e10>)
```
See:
https://emacs.stackexchange.com/questions/44537/extra-frame-in-visible-frame-list-when-started-in-daemon-mode-is-causing-prob
https://emacs.stackexchange.com/questions/18859/dont-let-the-daemon-frame-make-a-file-visible
|
|
|
|
The previous version modified the whole environment leading to
problems (see #7757). This version *adds* LANG=C to the current
env, without overriding it completely.
Fixes #7757.
|
|
Fixes #7754
|
|
* Remove TRAPWINCH; it's unrelated to vi-mode
* Update prompt with ad hoc KEYMAP variable
Fixes mode indicator when the terminal window is resized
|
|
changes:
- easily customize the colors via variables
- command to switch on/off the custom prompt
- Improved documentation with example on how to append on the prompt.
Fixes #7261
|
|
This fixes the RPROMPT setting for fishy theme so as to preserve its old value,
instead of overwriting it like it did before.
Also, fix unnecessary export of RPROMPT in aws plugin.
|
|
|
|
|
|
The 1.7.2 release was published in July 2010 [1]. It's about time to stop
supporting older versions.
Fixes #4583
[1] https://github.com/git/git/releases/tag/v1.7.2
|
|
Fixes #7568
Closes #4542
Closes #5163
Closes #6868
|
|
|
|
|
|
|
|
|
|
|
|
I was adding autojump on a new machine and annoyingly forgot that autojump
was to be installed on its own. This may be helpful.
|
|
Signed-off-by: Maximilian Güntner <code@maschinenpsychologe.de>
|
|
Fixes #5779
Fixes #5405
|
|
|
|
* Use stash 'push' or 'save' depending on Git version
A utility function now parses the output of git --version and set the
alias for git stash to 'git stash push' iff the current version of Git
is 2.13 or greater; it falls back to 'git stash save' otherwise.
|
|
|
|
|
|
yaourt -> yay
|
|
Fixes #6999
|
|
Fixes #7483
Closes #4973
|
|
|
|
Source: https://github.com/zsh-users/zsh-completions/blob/master/src/_httpie
Related: #7308
|
|
Fixes #7480
|
|
|
|
|
|
The whois.geek.nz resolver is now dead.
Fixes #7297
|
|
|
|
|
|
|
|
Fixes #6620
|
|
A default PS1 doesn't make sense: the user will either choose a theme or not
care about a default prompt since they can set it themselves.
Fixes #7054
|
|
Fixes #6981.
|
|
Fixes #4151
|
|
|
|
Fixes #6805
|
|
* Stop loading git plugin
* Update completion and git-prompt to v2.10
* Update completion to v2.14
|
|
Fixes #5453.
|
|
Fixes #5741
|
|
|
|
This early return made it so the lock wasn't removed, therefore locking out
the upgrade script from ever entering the upgrade routine.
Fixes #6138
Note: the logic needs some rework.
|
|
Fixes #6116
|
|
As described in #6086 there will be an error when one set another
language than English.
|
|
1. List the tags that match the pattern(s) passed through the argument.
2. Displays the first line of the annotation message along with the tag, or the line of the first commit message if the tag is not annotated.
3. Sorts and displays tags in descending order.
|
|
Adding links from the README and CONTRIBUTING pages to this, too, along with an email address for reporting abusive behavior to. Closes #7733 (#7734)
|