summaryrefslogtreecommitdiff
path: root/plugins/stack
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/stack')
-rw-r--r--plugins/stack/stack.plugin.zsh12
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/stack/stack.plugin.zsh b/plugins/stack/stack.plugin.zsh
index 7cc256394..a149208d0 100644
--- a/plugins/stack/stack.plugin.zsh
+++ b/plugins/stack/stack.plugin.zsh
@@ -1,14 +1,3 @@
-function stack_sandbox_info() {
- stack_files=(*.stack(N))
- if [ $#stack_files -gt 0 ]; then
- if [ -f stack.sandbox.config ]; then
- echo "%{$fg[green]%}sandboxed%{$reset_color%}"
- else
- echo "%{$fg[red]%}not sandboxed%{$reset_color%}"
- fi
- fi
-}
-
function _stack_commands() {
local ret=1 state
_arguments ':subcommand:->subcommand' && ret=0
@@ -46,4 +35,3 @@ function _stack_commands() {
}
compdef _stack_commands stack
-