about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2020-03-16 13:11:34 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2020-03-16 13:11:34 +0100
commitb143bc6ed42b682968c0992641c16b82adc5c406 (patch)
treec268da74a6d038ccd980aa85cc5a823d6d136415 /pkgs
parent6d37699a3dfd440b28d36aa96efc2f7337bd4cfa (diff)
downloadnixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar.gz
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar.bz2
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar.lz
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar.xz
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.tar.zst
nixlib-b143bc6ed42b682968c0992641c16b82adc5c406.zip
zsh-powerlevel10k: v1.3.0 → v1.4.0
Changes since the last release

    New prompt segments:
        package: shows npm name and version from package.json (disabled by default).

    New and changed parameters:
        P9K_OS_ICON: set by Powerlevel10k on initialization; can be used in user-defined prompt segments and *_EXPANSION parameters.
        POWERLEVEL9K_ICON_PADDING: when set to moderate, some icons will have an extra space after them. This is meant to avoid icon overlap when using non-monospace fonts. When set to none, spaces are not added.

    Performance improvement:
        detect_virt prompt segment is now 50% faster.

    Bug fixes:
        Many terminal escape sequences are now terminated with BEL instead of ST. BEL is the standard terminator according to ECMA-48 §8.3.89 but Konsole doesn't understand it. Thankfully, all terminals appear to understand BEL as extension.
        Superfluous spaces have been removed from vcs segment when using a monospace font and not using my_git_formatter.

    Wizard:
        Generated configs now set POWERLEVEL9K_ICON_PADDING in favor of *_VISUAL_IDENTIFIER_EXPANSION. The value of this parameters depends on the answers to the first few questions that concern terminal font capabilities.
        Generated configs no longer attempt to work around misconfigured locale. The workarounds in Powerlevel10k proper are sufficient.

    gitstatus:
        Fix a regression on Linux systems where uname doesn't understand -o.
        Fix a regression on Cygwin and MinGW when running on older versions of Windows.
        Fix a bug that can result in occasional gitstatus initialization failure on WSL when using Powerlevel10k with Instant Prompt.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/shells/zsh/zsh-powerlevel10k/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/zsh/zsh-powerlevel10k/default.nix b/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
index 35355bf29759..777ec6e63c15 100644
--- a/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
+++ b/pkgs/shells/zsh/zsh-powerlevel10k/default.nix
@@ -5,13 +5,13 @@
 
 stdenv.mkDerivation rec {
   pname = "powerlevel10k";
-  version = "1.3.0";
+  version = "1.4.0";
 
   src = fetchFromGitHub {
     owner = "romkatv";
     repo = "powerlevel10k";
     rev = "v${version}";
-    sha256 = "1w2iy9anc3cxb5kffrdz8knml8nsl6v3lcrdsigfzfp0zignb4cw";
+    sha256 = "03v8qlblgdazbm16gwr87blm5nxizza61f8w6hjyhgrx51ly9ln5";
   };
 
   patches = [