Thoughts
Oh yeah I got tired of Emacs. I'm trying out sublime, but it's just not customizable enough.
It's one of those things. Sublime is *so close* to what I want. So much closer even then Emacs currently is. But I want command-d to delete the current line. in Emacs, I can write a lambda function to do that. In Sublime, I don't even know if it's possible.
```lisp
(global-set-key (kbd "s-d")
(lambda () (interactive)
(delete-region
(line-beginning-position)
(+ (line-end-position) 1))))
```
Also I realized like 50% of my editor requirements (like command-d to delete line) come from the ace editor on KA. But they seem reasonable.
Edit (:19): I think I can get very close to what I want in Sublime by binding a macro to a keyboard shortcut.