Skip to content

rejeep/drag-stuff.el

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
April 11, 2017 22:56
October 23, 2015 10:19
November 8, 2016 08:49

Drag Stuff Build Status

Drag Stuff is a minor mode for Emacs that makes it possible to drag stuff (words, region, lines) around in Emacs.

Installation

I recommend installing via ELPA, but manual installation is simple as well:

(add-to-list 'load-path "/path/to/drag-stuff")
(require 'drag-stuff)

Usage

Start drag-stuff-mode using.

(drag-stuff-mode t)

or

M-x drag-stuff-mode

To enable drag-stuff globally, use:

(drag-stuff-global-mode 1)

Suggested key-bindings

To activate the suggested key-bindings, <M-up>, <M-down>, <M-right>, <M-left>, use:

(drag-stuff-define-keys)

Drag line

To drag a line up and down. Put the cursor on that line and press <M-up> and <M-down>.

Drag lines

To drag several lines up and down. Select the lines you want to drag and press <M-up> and <M-down>.

Drag region

A region can be dragged to the left and right. Select the region you want to drag and press <M-left> and <M-right>.

Drag word

To drag a word. Place the cursor on the word and press <M-left> and <M-right>.

For more information, see comments in drag-stuff.el.

Contribution

Contribution is much welcome! Drag stuff is tested using Ecukes. When adding new features, please write tests for them!

Install cask if you haven't already, then:

$ cd /path/to/drag-stuff
$ cask

Run all tests with:

$ make