diff options
author | Franck Cuny <franckcuny@gmail.com> | 2016-08-03 20:48:21 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2016-08-03 20:52:44 -0700 |
commit | f5fb4cddacc032585971dd3bada7576fa6622e04 (patch) | |
tree | 60295bfe0f4642cf2363df952412a1eb907949a4 | |
parent | Add a new option: `pants-extra-args'. (diff) | |
download | pants.el-f5fb4cddacc032585971dd3bada7576fa6622e04.tar.gz |
Rename 'helm' buffer and change the prompt.
-rw-r--r-- | pants.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pants.el b/pants.el index 7e5a7a9..ac98da8 100644 --- a/pants.el +++ b/pants.el @@ -106,9 +106,11 @@ (push target targets))) (helm (helm :sources - `((name . "Targets") + `((name . "Pants Targets") (candidates . ,targets) - (action . action)))))) + (action . action)) + :buffer "*helm pants targets*" + :prompt "pants: ")))) (defun pants--get-build-file-for-current-buffer () "Finds the nearest build file for the current buffer" |