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:
parent
5e6aae007d
commit
d45149db80
@ -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
12
init.el
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user