purescript: move SPC m m t to SPC m h t

by convention
This commit is contained in:
syl20bnr 2015-12-19 22:51:01 -05:00
parent acd3ffcdd3
commit 8d76f600b2
2 changed files with 3 additions and 3 deletions

View file

@ -47,9 +47,9 @@ If you want to get autocompletions and type information you have to install [[ht
| Key Binding | Description | | Key Binding | Description |
|-------------+---------------------------------------------------------| |-------------+---------------------------------------------------------|
| ~SPC m m s~ | Start psc-ide-server | | ~SPC m h t~ | Show type at point |
| ~SPC m m l~ | Load a module with its dependencies into psc-ide-server | | ~SPC m m l~ | Load a module with its dependencies into psc-ide-server |
| ~SPC m m t~ | Show type at point | | ~SPC m m s~ | Start psc-ide-server |
** REPL ** REPL

View file

@ -56,4 +56,4 @@
(spacemacs/set-leader-keys-for-major-mode 'purescript-mode (spacemacs/set-leader-keys-for-major-mode 'purescript-mode
"ms" 'psc-ide-server-start "ms" 'psc-ide-server-start
"ml" 'psc-ide-load-module "ml" 'psc-ide-load-module
"mt" 'psc-ide-show-type)))) "ht" 'psc-ide-show-type))))