Merge pull request #670 from toctan/helm-cleanup

Helm cleanup
This commit is contained in:
Bozhidar Batsov 2014-09-04 19:41:21 +03:00
commit 10011d66d0

View file

@ -11,7 +11,7 @@
;;; Commentary:
;; Some config for Helm that follows thiks guide: http://tuhdo.github.io/helm-intro.html
;; Some config for Helm that follows this guide: http://tuhdo.github.io/helm-intro.html
;;; License:
@ -38,7 +38,7 @@
;; must set before helm-config, otherwise helm use default
;; prefix "C-x c", which is inconvenient because you can
;; accidentially pressed "C-x C-c"
;; accidentally pressed "C-x C-c"
(setq helm-command-prefix-key "C-c h")
(require 'helm-config)
@ -53,23 +53,21 @@
(define-key helm-grep-mode-map (kbd "n") 'helm-grep-mode-jump-other-window-forward)
(define-key helm-grep-mode-map (kbd "p") 'helm-grep-mode-jump-other-window-backward)
(when (executable-find "curl")
(setq helm-google-suggest-use-curl-p t))
(setq
helm-google-suggest-use-curl-p t
helm-scroll-amount 4 ; scroll 4 lines other window using M-<next>/M-<prior>
helm-quick-update t ; do not display invisible candidates
helm-idle-delay 0.01 ; be idle for this many seconds, before updating in delayed sources.
helm-input-idle-delay 0.01 ; be idle for this many seconds, before updating candidate buffer
helm-ff-search-library-in-sexp t ; search for library in `require' and `declare-function' sexp.
helm-split-window-default-side 'other ;; open helm buffer in another window
helm-split-window-in-side-p t ;; open helm buffer inside current window, not occupy whole other window
helm-buffers-favorite-modes (append helm-buffers-favorite-modes
'(picture-mode artist-mode))
helm-candidate-number-limit 500 ; limit the number of displayed canidates
helm-M-x-requires-pattern 0 ; show all candidates when set to 0
helm-candidate-number-limit 500 ; limit the number of displayed candidates
helm-ff-file-name-history-use-recentf t
helm-move-to-line-cycle-in-source t ; move to end or beginning of source
; when reaching top or bottom of source.
ido-use-virtual-buffers t ; Needed in helm-buffers-list
helm-buffers-fuzzy-matching t ; fuzzy matching buffer names when non-nil
; useful in helm-mini that lists buffers
)
@ -80,9 +78,6 @@
(global-set-key (kbd "C-c h x") 'helm-register)
(global-set-key (kbd "C-c h SPC") 'helm-all-mark-rings)
;;; Save current position to mark ring
(add-hook 'helm-goto-line-before-hook 'helm-save-current-pos-to-mark-ring)
;; PACKAGE: helm-projectile
(require 'helm-projectile)
(push "Press <C-c p h> to navigate a project in Helm." prelude-tips)