aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2016-08-03 20:46:21 -0700
committerFranck Cuny <franckcuny@gmail.com>2016-08-03 20:52:39 -0700
commitbf8902a640bb6f939afa3f416225065eb7c47059 (patch)
treeb664bcf80901f759bb54162f119d22c46897969e /README.md
parentSilent warnings in pants. (diff)
downloadpants.el-bf8902a640bb6f939afa3f416225065eb7c47059.tar.gz
Add a new option: `pants-extra-args'.
This option is set to "" by default. It can be used to specify any extra option that will be used with every call to pants (for example: -q). Closes #4.
Diffstat (limited to 'README.md')
-rw-r--r--README.md5
1 files changed, 4 insertions, 1 deletions
diff --git a/README.md b/README.md
index 6be5f70..818a99f 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,8 @@ Then update your emacs' configuration:
:config
(progn
(setq pants-source-tree-root "/Users/fcuny/src/source"
- pants-bury-compilation-buffer t)))
+ pants-bury-compilation-buffer t
+ pants-extra-args "-q")))
```
## Configuration
@@ -39,6 +40,8 @@ There's a few variables that you can set:
* **pants-bury-compilation-buffer**: Set to true if you want to bury the compilation buffer after running successfully a command
+* **pants-extra-args**: Optional arguments to use with every call to `pants` (for example: "-q")
+
## Usage
### Go to the closest BUILD file