Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vcsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kevin Lyda
vcsh
Commits
5fcd2902
Commit
5fcd2902
authored
13 years ago
by
Richard Hartmann
Browse files
Options
Downloads
Patches
Plain Diff
Warn when source-only functions are called in executed context
parent
7e910058
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/error_codes.md
+3
-0
3 additions, 0 deletions
doc/error_codes.md
vcsh
+9
-0
9 additions, 0 deletions
vcsh
with
12 additions
and
0 deletions
doc/error_codes.md
0 → 100644
+
3
−
0
View file @
5fcd2902
*
0: OK
*
1: Generic error
*
10: source-only command was called without vcsh being sourced
This diff is collapsed.
Click to expand it.
vcsh
+
9
−
0
View file @
5fcd2902
...
...
@@ -5,6 +5,13 @@
[
-z
"
$VCSH_BASE
"
]
&&
VCSH_BASE
=
"
$XDG_CONFIG_HOME
/vcsh/repo.d"
SELF
=
$(
basename
$0
)
if
[
"
$SELF
"
=
'bash'
]
||
[
"
$SELF
"
=
'dash'
]
||
[
"
$SELF
"
=
'sh'
]
||
[
"
$SELF
"
=
'zsh'
]
;
then
SELF
=
'vcsh'
VCSH_SOURCED
=
1
fi
help
()
{
...
...
@@ -176,6 +183,7 @@ elif [ "$VCSH_COMMAND" = 'exit' ]; then
# unset VCSH_NO_IGNORE_EOF
# setopt NO_IGNORE_EOF
# fi
[
-z
"
$VCSH_SOURCED
"
]
&&
echo
"
$SELF
$VCSH_COMMAND
: You need to source vcsh if you want to run in this mode"
&&
return
10
leave
# [ -n "$ZSH_VERSION" ] && [ "$USER" = richih ] && buildPS1
verbose
"exit end"
...
...
@@ -251,6 +259,7 @@ elif [ "$VCSH_COMMAND" = 'use' ]; then
# zle -N vcsh_exit
# bindkey '^d' 'vcsh_exit'
# fi
[
-z
"
$VCSH_SOURCED
"
]
&&
echo
"
$SELF
$VCSH_COMMAND
: You need to source vcsh if you want to run in this mode"
&&
return
10
use
||
return
$?
# [ -n "$ZSH_VERSION" ] && [ "$USER" = richih ] && buildPS1
verbose
"use end"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment