| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| |
| |
| |
| |
| |
| | |
staging_065
Conflicts were:
- functions/vcs.zsh: Two commits avoided wrapper behaviour. #685
in grep, #797 in git.
|
| | |
|
|\ \
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Conflicts were:
- README.md: Two commits targeted the brightness table. #781 from
14. April 2018 on master and #684 from 05. December 2017 on next.
- powerlevel9k.zsh-theme: Two commits targeted the rbenv segment. Both
achieve the same thing: To show the Ruby version number always. #795 on
next from 14. April 2018 and #610 on master from 28. September 2017. I
went with #795 here as this - although being newer - is the one on
master, and that should be more stable.
|
| |\ \
| | | |
| | | | |
Rbenv prompt option always displays #777
|
| | | |
| | | |
| | | |
| | | | |
description
|
| | | |
| | | |
| | | |
| | | | |
prompt_rbenv if rbenv_version_name is the same as rbenv_global
|
| |\ \ \
| | | | |
| | | | | |
Fixed home abbreviation not being exclusive with circular navigation
|
| | |\ \ \ |
|
| | |/ / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This happens if a user switches from a subdirectory of $HOME
back to the home folder and truncation strategy is "truncate
folders from left". Then the folder is displayed as .../~
PR: #773
|
| | |/ / |
|
| |\ \ \
| | | | |
| | | | | |
workaround for ZSH status behavior
|
| | |/ /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
`$pipestatus` is returning all zeros when using `[[ ]]` expressions
that are false.
This works around it by using `$status` (A.K.A. `$?`) when `$pipestatus`
has only 1 items.
Fixes #749
|
| |\ \ \
| | | | |
| | | | | |
Fix Brightness Table in README
|
| | |\ \ \
| | |/ / /
| |/| | | |
|
| |\ \ \ \
| | | | | |
| | | | | | |
add rvm to README
|
| | | |/ /
| | |/| |
| | | | |
| | | | |
| | | | |
| | | | | |
see those files and look for `rvm`
+ https://github.com/bhilburn/powerlevel9k/blob/master/CHANGELOG.md
+ https://github.com/bhilburn/powerlevel9k/blob/master/powerlevel9k.zsh-theme
|
| |\ \ \ \
| | |/ / /
| |/| | | |
Fix table formatting in README
|
| | | | | |
|
| |/ / / |
|
| | | | |
|
| |/ / |
|
|\ \ \
| | | |
| | | | |
Make variables local
|
| | | | |
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | | |
update icons for nerd-fonts 2.0.0
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| | | |
| | | |
| | | |
| | | | |
From this point until the next tagged release, `next` will be in a state
of heavy flux as we make some significant and invasive changes.
|
| |\ \ \
| | | | |
| | | | |
| | | | | |
https://github.com/onaforeignshore/powerlevel9k into onaforeignshore-dir_strategies
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
If user sets POWERLEVEL9K_DIR_PATH_ABSOLUTE to true, uses absolute paths
instead of home folder abbreviation, e.g. /Users/chris/... instead of
~/...
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Truncate middle directories from the path. How many directories will be
untouched is controlled by POWERLEVEL9K_SHORTER_DIR_LENGTH.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Added `truncate_to_last`
Added `truncate_absolute`
Moved `truncate_to_unique` before folder marker
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Added comments throughout the code
Added `truncate_to_last` - displays only the current folder
Added `truncate_absolute` - displays only the last
POWERLEVEL9K_SHORTER_DIR_LENGTH characters - see #736
|
| | | | |
| | | | |
| | | | |
| | | | | |
There's always that one pesky variable name you forget to change...
|
| | | | |
| | | | |
| | | | |
| | | | | |
*Fingers crossed*
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Instead of testing for number of folders, now only tests if string is
longer than 1 character.
|
| | | | |
| | | | |
| | | | |
| | | | | |
Did `local 3=...` instead of `3=...`
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
While zsh accepts the following code:
```
local paths=(${(s:/:)${1//"~\/"/}})
```
Travis fails unless it is
```
local paths=$1
paths=(${(s:/:)${paths//"~\/"/}})
```
|
| | | | |
| | | | |
| | | | |
| | | | | |
Added variable `delim_len` with test when delim=""
|
| | | | | |
|