- 14 Dec, 2015 7 commits
-
-
moyamo authored
-
moyamo authored
Currently, the title is only set on supported terminals (i.e. xterm, urxvt, screen etc.). Using terminfo entries to set the terminal title adds support for many more terminals.
-
Marc Cornellà authored
[Composer] redirect stderr to /dev/null for completion commands
-
Marc Cornellà authored
Update link to git completion
-
Kaelig authored
-
Marc Cornellà authored
Close #3627
-
desrum_m authored
This change enables UP-arrow and DOWN-arrow full-line history completion. For example, if you write `git clone` and press UP: - Before this change, it will use the last command that starts with `git`. - After this change, it will use the last command that starts with `git clone`.
-
- 13 Dec, 2015 6 commits
-
-
Marc Cornellà authored
znt: faster startup of tools using colorifying (e.g. n-history), optimized heap usage for older Zsh's
-
Marc Cornellà authored
Make spectrum_ls implementation consistent with $FG and spectrum_bls
-
Marc Cornellà authored
Close #4193
-
Andrew Janke authored
This avoids an ordering dependency between this and the vi-mode plugin.
-
Marc Cornellà authored
Hide spectrum.zsh var values to avoid junky output to terminal
-
Marc Cornellà authored
The alias was removed in #3564. A couple of users were using it, so I'm adding it back.
-
- 11 Dec, 2015 5 commits
-
-
Kaelig authored
-
Marc Cornellà authored
common-aliases: handle "dev" versions in version check
-
Marc Cornellà authored
Recognize Firefox addon and Android packages.
-
Marc Cornellà authored
Use actual `commit --amend` command for Mercurial
-
Andrew Janke authored
Uses `is-at-least` instead of a numeric comparison hack, so versions with non-numeric bits like "4.5.0-dev5" don't throw errors.
-
- 10 Dec, 2015 2 commits
-
-
Marc Cornellà authored
Add Ecosia to web-search plugin.
-
Gregory McCue authored
-
- 07 Dec, 2015 1 commit
-
-
Sebastian Gniazdowski authored
-
- 06 Dec, 2015 1 commit
-
-
Bilal Amarni authored
-
- 05 Dec, 2015 2 commits
-
-
Marc Cornellà authored
The tilde character is not expanded when inside quotes. See https://github.com/robbyrussell/oh-my-zsh/issues/4668#issuecomment-162213379
-
Marc Cornellà authored
Make code in lib/termsupport.zsh more readable
-
- 04 Dec, 2015 1 commit
-
-
Sebastian Gniazdowski authored
-
- 03 Dec, 2015 1 commit
-
-
Sebastian Gniazdowski authored
-
- 02 Dec, 2015 2 commits
-
-
Hugh Wang authored
-
Marc Cornellà authored
znt: updated README.md, twice as fast searching
-
- 01 Dec, 2015 5 commits
-
-
Marc Cornellà authored
-
Marc Cornellà authored
-
Marc Cornellà authored
-
Marc Cornellà authored
Close #2739
-
Dawid Ferenczy authored
-
- 30 Nov, 2015 7 commits
-
-
Marc Cornellà authored
Add support for "putty" $TERM in termsupport.zsh
-
Marc Cornellà authored
[tmux-cssh plugin] Initial version
-
Ionel Cristian Mărieș authored
-
Marc Cornellà authored
Fixes #4597
-
Marc Cornellà authored
-
Marc Cornellà authored
Otherwise `start` will confuse the first parameter as the title of a new command prompt if the parameter contains whitespace. That is because the command to be run will be: start "abc def" which opens a new command prompt window with the title "abc def". With the added empty string we force the start command to interpret the passed parameter as the file / command: start "" "abc def" which will be interpreted like `""` is the title and the rest is the file or command to start. ------- **NOTE:** this wouldn't be necessary if the start script in msys was defined differently; that is, if it had the empty string already incorporated in the script (/usr/bin/start), like so: ```diff -cmd //c start "${@//&/^&}" +cmd //c start "" "${@//&/^&}" ``` Notice however that this would make it impossible to use start setting a different title, so it's probably best to leave it as is. More info: http://sourceforge.net/p/msys2/tickets/14/ ------- The change `${(z)open_cmd}` is necessary to force zsh to split the variable by the spaces and interpret it as separate words. More info: http://zsh.sourceforge.net/FAQ/zshfaq03.html#l17
-
Mark Ingalls authored
Added an option for the msys value of $OSTYPE
-