Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
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
dc307430
Commit
dc307430
authored
12 years ago
by
Peter Tillemans
Browse files
Options
Download
Email Patches
Plain Diff
Added subcommands for leiningen 1.7.0
parent
1120f973
master
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
plugins/lein/lein.plugin.zsh
+14
-0
plugins/lein/lein.plugin.zsh
with
14 additions
and
0 deletions
+14
-0
plugins/lein/lein.plugin.zsh
View file @
dc307430
...
@@ -5,15 +5,29 @@ function _lein_commands() {
...
@@ -5,15 +5,29 @@ function _lein_commands() {
case
$state
in
case
$state
in
subcommand
)
subcommand
)
subcommands
=(
subcommands
=(
"classpath:print the classpath of the current project"
"clean:remove compiled files and dependencies from project"
"clean:remove compiled files and dependencies from project"
"compile:ahead-of-time compile the project"
"compile:ahead-of-time compile the project"
"deploy:build jar and deploy to remote repository"
"deps:download and install all dependencies"
"deps:download and install all dependencies"
"help:display a list of tasks or help for a given task"
"help:display a list of tasks or help for a given task"
"install:install the project and its dependencies in your local repository"
"install:install the project and its dependencies in your local repository"
"int:enter an interactive task shell"
"interactive:enter an interactive task shell"
"jack-in:jack in to a clojure slime session from emacs."
"jar:create a jar file containing the compiled .class files"
"jar:create a jar file containing the compiled .class files"
"javac:compile java source files"
"new:create a new project skeleton"
"new:create a new project skeleton"
"plugin:manage user-level plugins"
"pom:write a pom.xml file to disk for maven interop"
"pom:write a pom.xml file to disk for maven interop"
"repl:start a repl session either with the current project or standalone"
"retest:run only the test namespaces which failed last time around"
"run:run the project's -main function"
"search:search remote maven repositories for matching jars"
"swank:launch swank server for Emacs to connect"
"test:run the project's tests"
"test:run the project's tests"
"test!:run a project's tests after cleaning and fetching dependencies"
"trampoline:run a task without nesting the project's JVM inside Leiningen's."
"uberjar:Create a jar including the contents of each of deps"
"uberjar:Create a jar including the contents of each of deps"
"upgrade:upgrade leiningen to the latest stable release"
"upgrade:upgrade leiningen to the latest stable release"
"version:print leiningen's version"
"version:print leiningen's version"
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help