Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion themes/modern-t/modern-t.theme.bash
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ esac
PS3=">> "

is_vim_shell() {
if [ ! -z "$VIMRUNTIME" ]; then
if [ -n "$VIMRUNTIME" ]; then
echo "[${cyan?}vim shell${normal?}]"
fi
}
Expand Down
1 change: 1 addition & 0 deletions themes/powerturk/powerturk.theme.bash
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ _collapsed_wd() {
| sed -re "s/\//  /g"
}

# shellcheck disable=SC2120
_swd() {
# Adapted from http://stackoverflow.com/a/2951707/1766716
begin="" # The unshortened beginning of the path.
Expand Down
Loading