Skip to content

Instantly share code, notes, and snippets.

@johnwalker
Created January 15, 2014 02:45
Show Gist options
  • Save johnwalker/8429900 to your computer and use it in GitHub Desktop.
Save johnwalker/8429900 to your computer and use it in GitHub Desktop.
(defun backward-whitespace-line ()
(interactive)
(let ((n (current-column)))
(beginning-of-line)
(backward-word)
(move-to-column n)))
(defun forward-whitespace-line ()
(interactive)
(let ((n (current-column)))
(end-of-line)
(forward-word)
(move-to-column n)))
@stephenrparsons
Copy link

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment