Fixed helm update breaking my make-frame key

This commit is contained in:
Kashish Sharma 2014-10-07 10:53:28 +05:30
parent 60fe531400
commit 72bdce76c3
1 changed files with 10 additions and 5 deletions

15
init.el
View File

@ -47,9 +47,9 @@
;(global-set-key (kbd "C-x") 'backward-kill-word)
;(global-set-key (kbd "C-,") 'string-rectangle 'TAB)
(global-unset-key (kbd "C-u"))
(global-set-key (kbd "C-x cf") 'make-frame)
(global-unset-key (kbd "C-x d"))
(global-set-key (kbd "C-x df") 'delete-frame)
;;;; make-frame key is after Helm's config
;;;; Fix multi-line indenting - thanks forcer!
;(defun hn/add-tab-in-front-of-every-line-in-region (beg end) (interactive "r")
@ -122,9 +122,11 @@
(require 'helm-config)
(require 'helm-grep)
(global-set-key (kbd "C-c h") 'helm-command-prefix)
(global-unset-key (kbd "C-x c"))
(define-key helm-map (kbd "C-h") 'helm-ff--deleting-char-backward)
;(global-unset-key (kbd "C-x c"))
(define-key helm-map (kbd "C-h") 'backward-delete-char)
(define-key helm-map (kbd "C-i") 'hippie-expand)
(global-set-key (kbd "M-x") 'helm-M-x)
(global-set-key (kbd "C-x cf") 'make-frame)
(helm-mode 1)
;;;; zlc
@ -154,13 +156,16 @@
;;;; yafolding.el
(add-hook 'prog-mode-hook
(lambda () (yafolding-mode)))
; Win-switch
;;;; Win-switch
(require 'win-switch)
(global-set-key "\C-xo" 'win-switch-dispatch)
(setq win-switch-other-window-first nil)
; window-number
;;;; window-number
(require 'window-number)
(window-number-mode)
;;;; Here be customize dragons
(custom-set-variables
;; custom-set-variables was added by Custom.