Remove easy-kill in favour of expand-region

* easy-kill is not that easy
* I actually used for the purpose of expand-region
This commit is contained in:
Gergely Polonkai 2016-11-16 23:00:30 +01:00
parent 5e6aae007d
commit d45149db80
2 changed files with 7 additions and 7 deletions

View File

@ -48,12 +48,12 @@
diminish
dired-k
drag-stuff
easy-kill
electric-case
electric-spacing
emamux
eshell-fringe-status
eshell-prompt-extras
expand-region
fill-column-indicator
flycheck
flycheck-pkg-config

12
init.el
View File

@ -836,12 +836,6 @@
(setq auto-save-file-name-transforms
`((".*" ,temporary-file-directory t))))
(use-package easy-kill
:ensure t
:demand t
:config
(global-set-key [remap kill-ring-save] 'easy-kill))
(use-package helm-c-yasnippet
:ensure t
:demand t
@ -884,6 +878,12 @@
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
(setq highlight-indent-guides-method 'character))
(use-package expand-region
:ensure t
:bind
(:map ctl-x-map
("*" . er/expand-region)))
;; Load my own functions
(load "gnu-c-header.el")
(load "toggle-window-split.el")