Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
a7f5170d
Commit
a7f5170d
authored
Aug 31, 2020
by
Marc Cornellà
Browse files
Remove perl dependency
parent
0dc83fe4
Changes
3
Hide whitespace changes
Inline
Side-by-side
plugins/timer/timer.plugin.zsh
View file @
a7f5170d
zmodload zsh/datetime
__timer_current_time
()
{
perl
-MTime
::HiRes
=
time
-e
'print time'
zmodload zsh/datetime
echo
$EPOCHREALTIME
}
__timer_format_duration
()
{
...
...
themes/fishy.zsh-theme
View file @
a7f5170d
# ZSH Theme emulating the Fish shell's default prompt.
_fishy_collapsed_wd() {
echo $(pwd | perl -pe '
BEGIN {
binmode STDIN, ":encoding(UTF-8)";
binmode STDOUT, ":encoding(UTF-8)";
}; s|^$ENV{HOME}|~|g; s|/([^/.])[^/]*(?=/)|/$1|g; s|/\.([^/])[^/]*(?=/)|/.$1|g
')
local -a pwd=("${(s:/:)PWD/#$HOME/~}")
for i in {1..$(($#pwd-1))}; do
if [[ "$pwd[$i]" = .* ]]; then
pwd[$i]="${${pwd[$i]}[1,2]}"
else
pwd[$i]="${${pwd[$i]}[1]}"
fi
done
echo "${(j:/:)pwd}"
}
local user_color='green'; [ $UID -eq 0 ] && user_color='red'
...
...
themes/trapd00r.zsh-theme
View file @
a7f5170d
...
...
@@ -2,7 +2,7 @@
#
# This theme needs a terminal supporting 256 colors as well as unicode.
# In order to avoid external dependencies, it also has a zsh version of
# the perl script
at
https://github.com/trapd00r/utils/blob/master/zsh_path,
# the
previously used
perl script https://github.com/trapd00r/utils/blob/master/zsh_path,
# which splits up the current path and makes it fancy.
#
# By default it spans over two lines like so:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment