mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
Merge pull request #180 from dritter/3_0_changelog_additions
Missed changelog entries for v0.3.0
This commit is contained in:
commit
0639e1132c
1 changed files with 21 additions and 1 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,4 +1,4 @@
|
|||
## v0.3.0 (next)
|
||||
## v0.3.0
|
||||
|
||||
### Introduced "visual identifiers" to the segments
|
||||
|
||||
|
@ -11,11 +11,31 @@ You can now merge segments together by suffixing the segment name with "_joined"
|
|||
For Developers: Be aware that the order of parameters in left/right_prompt_segment
|
||||
has changed. Now a boolean parameter must be set as second parameter (true if joined).
|
||||
|
||||
### `dir` changes
|
||||
|
||||
This segment now has "state", which means you now can change the colors seperatly
|
||||
depending if you are in your homefolder or not.
|
||||
Your variables for that should now look like:
|
||||
```zsh
|
||||
POWERLEVEL9K_DIR_HOME_BACKGROUND='green'
|
||||
POWERLEVEL9K_DIR_HOME_FOREGROUND='cyan'
|
||||
POWERLEVEL9K_DIR_DEFAULT_BACKGROUND='red'
|
||||
POWERLEVEL9K_DIR_DEFAULT_FOREGROUND='yellow'
|
||||
```
|
||||
|
||||
### `status` changes
|
||||
|
||||
The `status` segment was split up into three segments. `background_jobs` prints
|
||||
an icon if there are background jobs. `root_indicator` prints an icon if the user
|
||||
is root. The `status` segment focuses now on the status only.
|
||||
The `status` segment also now has "state". If you want to overwrite the colors,
|
||||
you have to add the state to your variables:
|
||||
```zsh
|
||||
POWERLEVEL9K_STATUS_ERROR_BACKGROUND='green'
|
||||
POWERLEVEL9K_STATUS_ERROR_FOREGROUND='cyan'
|
||||
POWERLEVEL9K_STATUS_OK_BACKGROUND='red'
|
||||
POWERLEVEL9K_STATUS_OK_FOREGROUND='yellow'
|
||||
```
|
||||
|
||||
### New segment `custom_command` added
|
||||
|
||||
|
|
Loading…
Reference in a new issue