]> git.phdru.name Git - dotfiles.git/commitdiff
Fix(short_curdir): Count ellipsis
authorOleg Broytman <phd@phdru.name>
Mon, 8 Jun 2020 17:47:20 +0000 (20:47 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 8 Jun 2020 17:47:20 +0000 (20:47 +0300)
admin/prog/short_curdir

index 62ede06c64a045c8e755365f4f8c447791175c75..315543d1d7507fee16757060f63ee7084ba36503 100644 (file)
@@ -9,7 +9,7 @@ short_curdir() {
    fi
    local _short_curdir
    _short_curdir="${PWD##*/}" # cut all directories, get base name
-   if [ "${#_short_curdir}" -gt 15 ]; then
+   if [ "${#_short_curdir}" -gt 18 ]; then
       _short_curdir="${_short_curdir::15}..." # cut long string
    fi
    echo "${_short_curdir}"