Name: Anonymous 2018-10-23 10:11
If you're developing on windows it is objectively the wrong choice to not use Visual Studio.
I also think it pioneered some useful stuff like c-x cutting the whole line when you haven't selected a block.Mind = blown, wow such a revolutionary feature. I can't wait for the holy Sublime Text devs to grace me with more brilliant features.
(local-set-key (kbd "C-x")
#'(lambda ()
(interactive)
(end-of-line)
(set-mark (line-beginning-position))
(kill-region (line-beginning-position) (point))))
Editors which don't index everything and where you have to search and manually replace instead of just invoking a rename action are no competition.
I also think it pioneered some useful stuff like c-x cutting the whole line when you haven't selected a block.C-k in nano.
(local-set-key (kbd "C-x") #'kill-whole-line)