Skip to content

Instantly share code, notes, and snippets.

@topfunky
Created February 24, 2009 05:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save topfunky/69430 to your computer and use it in GitHub Desktop.
Save topfunky/69430 to your computer and use it in GitHub Desktop.
(defun enter-to-previous-line ()
(interactive)
(beginning-of-line)
(newline-and-indent)
(previous-line)
(indent-according-to-mode))
(define-key textmate-mode-map [C-return] 'enter-to-previous-line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment