Switch from drag-stuff to objed
This commit is contained in:
@@ -1706,15 +1706,21 @@ I also want FlySpell to be enabled during Git commit message editing.
|
||||
(use-package org-projectile-helm)
|
||||
#+END_SRC
|
||||
|
||||
** Drag stuff
|
||||
** Text object manipulation
|
||||
|
||||
To move lines around.
|
||||
From the package description:
|
||||
|
||||
#+BEGIN_QUOTE
|
||||
Text objects are textual patterns like a line, a top level definition, a word, a sentence or any
|
||||
other unit of text. When objed-mode is enabled, certain editing commands (configurable) will
|
||||
activate objed and enable its modal editing features.
|
||||
#+END_QUOTE
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(use-package drag-stuff
|
||||
:config
|
||||
(drag-stuff-global-mode t)
|
||||
(drag-stuff-define-keys))
|
||||
(use-package objed
|
||||
:bind
|
||||
(:map global-map
|
||||
("M-SPC" . objed-activate)))
|
||||
#+END_SRC
|
||||
|
||||
** Ace window
|
||||
|
Reference in New Issue
Block a user