Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
5e328e3a
Commit
5e328e3a
authored
Jul 11, 2014
by
Moinak Ghosh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solaris portability tweaks.
parent
5728a560
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
2 deletions
+35
-2
completion.zsh
lib/completion.zsh
+6
-1
oh-my-zsh.sh
oh-my-zsh.sh
+1
-0
colored-man.plugin.zsh
plugins/colored-man/colored-man.plugin.zsh
+21
-0
check_for_upgrade.sh
tools/check_for_upgrade.sh
+7
-1
No files found.
lib/completion.zsh
View file @
5e328e3a
...
@@ -25,7 +25,12 @@ bindkey -M menuselect '^o' accept-and-infer-next-history
...
@@ -25,7 +25,12 @@ bindkey -M menuselect '^o' accept-and-infer-next-history
zstyle
':completion:*:*:*:*:*'
menu
select
zstyle
':completion:*:*:*:*:*'
menu
select
zstyle
':completion:*:*:kill:*:processes'
list-colors
'=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
zstyle
':completion:*:*:kill:*:processes'
list-colors
'=(#b) #([0-9]#) ([0-9a-z-]#)*=01;34=0=01'
zstyle
':completion:*:*:*:*:processes'
command
"ps -u
`
whoami
`
-o pid,user,comm -w -w"
if
[
"
$PLAT
"
=
"SunOS"
]
then
zstyle
':completion:*:*:*:*:processes'
command
"ps -u
`
whoami
`
-o pid,user,comm"
else
zstyle
':completion:*:*:*:*:processes'
command
"ps -u
`
whoami
`
-o pid,user,comm -w -w"
fi
# disable named-directories autocompletion
# disable named-directories autocompletion
zstyle
':completion:*:cd:*'
tag-order local-directories directory-stack path-directories
zstyle
':completion:*:cd:*'
tag-order local-directories directory-stack path-directories
...
...
oh-my-zsh.sh
View file @
5e328e3a
PLAT
=
`
uname
-s
`
# Check for updates on initial load...
# Check for updates on initial load...
if
[
"
$DISABLE_AUTO_UPDATE
"
!=
"true"
]
;
then
if
[
"
$DISABLE_AUTO_UPDATE
"
!=
"true"
]
;
then
/usr/bin/env
ZSH
=
$ZSH
DISABLE_UPDATE_PROMPT
=
$DISABLE_UPDATE_PROMPT
zsh
-f
$ZSH
/tools/check_for_upgrade.sh
/usr/bin/env
ZSH
=
$ZSH
DISABLE_UPDATE_PROMPT
=
$DISABLE_UPDATE_PROMPT
zsh
-f
$ZSH
/tools/check_for_upgrade.sh
...
...
plugins/colored-man/colored-man.plugin.zsh
View file @
5e328e3a
if
[
"
${
PLAT
}
"
=
"SunOS"
]
then
if
[
!
-x
${
HOME
}
/bin/nroff
]
then
mkdir
-p
${
HOME
}
/bin
cat
>
${
HOME
}
/bin/nroff
<<
EOF
#!/bin/sh
if [ -n "\
$_NROFF_U
" -a "\
$1
,\
$2
,\
$3
" = "-u0,-Tlp,-man" ]; then
shift
exec /usr/bin/nroff -u\
${
_NROFF_U
}
"\
$@
"
fi
#-- Some other invocation of nroff
exec /usr/bin/nroff "\
$@
"
EOF
chmod
+x
${
HOME
}
/bin/nroff
fi
fi
man
()
{
man
()
{
env
\
env
\
LESS_TERMCAP_mb
=
$(
printf
"
\e
[1;31m"
)
\
LESS_TERMCAP_mb
=
$(
printf
"
\e
[1;31m"
)
\
...
@@ -7,5 +25,8 @@ man() {
...
@@ -7,5 +25,8 @@ man() {
LESS_TERMCAP_so
=
$(
printf
"
\e
[1;44;33m"
)
\
LESS_TERMCAP_so
=
$(
printf
"
\e
[1;44;33m"
)
\
LESS_TERMCAP_ue
=
$(
printf
"
\e
[0m"
)
\
LESS_TERMCAP_ue
=
$(
printf
"
\e
[0m"
)
\
LESS_TERMCAP_us
=
$(
printf
"
\e
[1;32m"
)
\
LESS_TERMCAP_us
=
$(
printf
"
\e
[1;32m"
)
\
PAGER
=
/usr/bin/less
\
_NROFF_U
=
1
\
PATH
=
${
HOME
}
/bin:
${
PATH
}
\
man
"
$@
"
man
"
$@
"
}
}
tools/check_for_upgrade.sh
View file @
5e328e3a
#!/bin/sh
#!/bin/sh
PLAT
=
`
uname
-s
`
function
_current_epoch
()
{
function
_current_epoch
()
{
echo
$(($(
date
+%s
)
/
60
/
60
/
24
))
if
[
"
$PLAT
"
=
"SunOS"
]
then
echo
$(($(
perl
-e
'print time'
)
/
60
/
60
/
24
))
else
echo
$(($(
date
+%s
)
/
60
/
60
/
24
))
fi
}
}
function
_update_zsh_update
()
{
function
_update_zsh_update
()
{
...
...
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