From 0e9ddbb0bf0cd34500155ea4b03de2e2a38d8ab2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 16 Mar 2020 23:33:42 +0100 Subject: Well I'm using Arch again --- .oh-my-zsh/plugins/stack/README.md | 9 -------- .oh-my-zsh/plugins/stack/stack.plugin.zsh | 37 ------------------------------- 2 files changed, 46 deletions(-) delete mode 100644 .oh-my-zsh/plugins/stack/README.md delete mode 100644 .oh-my-zsh/plugins/stack/stack.plugin.zsh (limited to '.oh-my-zsh/plugins/stack') diff --git a/.oh-my-zsh/plugins/stack/README.md b/.oh-my-zsh/plugins/stack/README.md deleted file mode 100644 index da73444..0000000 --- a/.oh-my-zsh/plugins/stack/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# Stack - -This plugin provides completion for [Stack](https://haskellstack.org). - -To use it add stack to the plugins array in your zshrc file. - -```bash -plugins=(... stack) -``` diff --git a/.oh-my-zsh/plugins/stack/stack.plugin.zsh b/.oh-my-zsh/plugins/stack/stack.plugin.zsh deleted file mode 100644 index a149208..0000000 --- a/.oh-my-zsh/plugins/stack/stack.plugin.zsh +++ /dev/null @@ -1,37 +0,0 @@ -function _stack_commands() { - local ret=1 state - _arguments ':subcommand:->subcommand' && ret=0 - - case $state in - subcommand) - subcommands=( - "build:Build the project(s) in this directory/configuration" - "install:Build executables and install to a user path" - "test:Build and test the project(s) in this directory/configuration" - "bench:Build and benchmark the project(s) in this directory/configuration" - "haddock:Generate haddocks for the project(s) in this directory/configuration" - "new:Create a brand new project" - "init:Initialize a stack project based on one or more stack packages" - "solver:Use a dependency solver to try and determine missing extra-deps" - "setup:Get the appropriate ghc for your project" - "path:Print out handy path information" - "unpack:Unpack one or more packages locally" - "update:Update the package index" - "upgrade:Upgrade to the latest stack (experimental)" - "upload:Upload a package to Hackage" - "dot:Visualize your project's dependency graph using Graphviz dot" - "exec:Execute a command" - "ghc:Run ghc" - "ghci:Run ghci in the context of project(s)" - "ide:Run ide-backend-client with the correct arguments" - "runghc:Run runghc" - "clean:Clean the local packages" - "docker:Subcommands specific to Docker use" - ) - _describe -t subcommands 'stack subcommands' subcommands && ret=0 - esac - - return ret -} - -compdef _stack_commands stack -- cgit v1.2.3