add a keybind for the function eclim-java-run-run

This commit is contained in:
WillianPaiva 2015-11-17 22:29:48 +01:00 committed by syl20bnr
parent 42b13b5178
commit e1e091eee8
2 changed files with 15 additions and 14 deletions

View File

@ -12,31 +12,31 @@
- [[#installation][Installation]]
- [[#about-maven][About Maven]]
- [[#eclim][Eclim]]
- [[#installation][Installation]]
- [[#installation-1][Installation]]
- [[#eclipse][Eclipse]]
- [[#eclim][Eclim]]
- [[#eclim-1][Eclim]]
- [[#configuration][Configuration]]
- [[#usage][Usage]]
- [[#ensime][ENSIME]]
- [[#installation][Installation]]
- [[#configuration][Configuration]]
- [[#usage][Usage]]
- [[#installation-2][Installation]]
- [[#configuration-1][Configuration]]
- [[#usage-1][Usage]]
- [[#issues][Issues]]
- [[#key-bindings][Key bindings]]
- [[#meghanada][Meghanada]]
- [[#meghanada-1][Meghanada]]
- [[#server][Server]]
- [[#navigation][Navigation]]
- [[#compilation][Compilation]]
- [[#tests-junit][Tests (junit)]]
- [[#refactoring][Refactoring]]
- [[#tasks][Tasks]]
- [[#eclim][Eclim]]
- [[#eclim-2][Eclim]]
- [[#java-mode][Java-mode]]
- [[#project-management][Project management]]
- [[#eclim-daemon][Eclim daemon]]
- [[#maven][Maven]]
- [[#goto][Goto]]
- [[#refactoring][Refactoring]]
- [[#refactoring-1][Refactoring]]
- [[#documentation-find][Documentation, Find]]
- [[#errors-problems][Errors (problems)]]
- [[#tests][Tests]]
@ -49,12 +49,12 @@
- [[#typecheck][Typecheck]]
- [[#debug][Debug]]
- [[#errors][Errors]]
- [[#goto][Goto]]
- [[#goto-1][Goto]]
- [[#print-and-yank-types][Print and yank types]]
- [[#documentation-inspect][Documentation, Inspect]]
- [[#server][Server]]
- [[#refactoring][Refactoring]]
- [[#tests][Tests]]
- [[#server-1][Server]]
- [[#refactoring-2][Refactoring]]
- [[#tests-1][Tests]]
- [[#repl][REPL]]
* Description
@ -274,6 +274,7 @@ particular refactoring doesn't work.
| ~SPC m p k~ | Close project |
| ~SPC m p o~ | Open project |
| ~SPC m p p~ | Open project management buffer |
| ~SPC m p r~ | Run project |
| ~SPC m p u~ | Update project |
**** Eclim daemon

View File

@ -109,6 +109,7 @@
"pk" 'eclim-project-close
"po" 'eclim-project-open
"pp" 'eclim-project-mode
"pr" 'eclim-java-run-run
"pu" 'eclim-project-update
;; refactor
"rc" 'eclim-java-constructor
@ -155,8 +156,7 @@
(kbd "p") 'eclim-project-update
(kbd "g") 'eclim-project-mode-refresh
(kbd "R") 'eclim-project-rename
(kbd "q") 'eclim-quit-window)
)))
(kbd "q") 'eclim-quit-window))))
(defun java/post-init-eldoc ()
(add-hook 'java-mode-local-vars-hook #'spacemacs//java-setup-eldoc))