cheatsheet-show key binding added

This commit is contained in:
Sameer Rahmani 2016-11-21 11:52:49 +03:30
parent 776a77f0d0
commit 8866704262
2 changed files with 8 additions and 2 deletions

View File

@ -107,11 +107,11 @@
(ability pt ()
"Provides fast search ability via platinium search"
(require 'pt)
(cheatsheet-add :group 'Development
(cheatsheet-add :group '--Development--
:key "C-c p s s"
:description "Search within a project using pt. It's fast.")
(cheatsheet-add :group 'Development
(cheatsheet-add :group '--Development--
:key "C-c p s r"
:description "Search for a regexp in a project.")
(add-hook 'projectile-mode-hook 'enable-pt-search))

View File

@ -13,6 +13,12 @@
(require 'cheatsheet)
(require 'extensions/editor/utils)
(cheatsheet-add :group '--HELP--
:key "C-?"
:description "Show this cheatsheet")
(global-set-key (kbd "C-?") 'cheatsheet-show)
;; Remove splash screen
(setq inhibit-splash-screen t)