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
|
diminish
|
||||||
dired-k
|
dired-k
|
||||||
drag-stuff
|
drag-stuff
|
||||||
easy-kill
|
|
||||||
electric-case
|
electric-case
|
||||||
electric-spacing
|
electric-spacing
|
||||||
emamux
|
emamux
|
||||||
eshell-fringe-status
|
eshell-fringe-status
|
||||||
eshell-prompt-extras
|
eshell-prompt-extras
|
||||||
|
expand-region
|
||||||
fill-column-indicator
|
fill-column-indicator
|
||||||
flycheck
|
flycheck
|
||||||
flycheck-pkg-config
|
flycheck-pkg-config
|
||||||
|
12
init.el
12
init.el
@ -836,12 +836,6 @@
|
|||||||
(setq auto-save-file-name-transforms
|
(setq auto-save-file-name-transforms
|
||||||
`((".*" ,temporary-file-directory t))))
|
`((".*" ,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
|
(use-package helm-c-yasnippet
|
||||||
:ensure t
|
:ensure t
|
||||||
:demand t
|
:demand t
|
||||||
@ -884,6 +878,12 @@
|
|||||||
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
(add-hook 'prog-mode-hook 'highlight-indent-guides-mode)
|
||||||
(setq highlight-indent-guides-method 'character))
|
(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 my own functions
|
||||||
(load "gnu-c-header.el")
|
(load "gnu-c-header.el")
|
||||||
(load "toggle-window-split.el")
|
(load "toggle-window-split.el")
|
||||||
|
Loading…
Reference in New Issue
Block a user