http://sublimetext.userecho.com/topic/19331-better-or-custom...
Sublime Text 2.0 Released
31–40 of 358 posts
Re: Sublime Text 2.0 Released
#32As a Textmate'r, I have to say using ST for the last few months has been a pleasure. There is one thing that ST doesn't do as well though: pasting blocks of code while retaining the formatting/indentation. i.e. if I copy a loop and try and paste it into another function/whatever and the cursor isn't on the same column, the indentation gets messed up. It's a minor quibble and far from a deal-breaker, but it is a bit o…
Re: Sublime Text 2.0 Released
#33Specifically for programming I cannot see why you would use this as opposed to something like Visual Studio with its context aware auto-complete (massive productivity increase).
But then again I also don't get why someone would use Vim or Emacs when you have GUI based tools available (even freely). Even for non-Windows programming Eclipse exists and has a decent (if slow) context aware auto-complete for many languages.
The only justification I've ever heard for people's continued use of tools like this boil down to either "I know the shortcut keys" or "I don't have to use the mouse."
Which to me is odd within its self as very little of my programming efficiency is lost mousing around, and a lot more lost having to jump around code blocks because auto-complete didn't magically know what an object's members were...
Re: Sublime Text 2.0 Released
#34Re: Sublime Text 2.0 Released
#35Re: Sublime Text 2.0 Released
#36As a Textmate'r, I have to say using ST for the last few months has been a pleasure. There is one thing that ST doesn't do as well though: pasting blocks of code while retaining the formatting/indentation. i.e. if I copy a loop and try and paste it into another function/whatever and the cursor isn't on the same column, the indentation gets messed up. It's a minor quibble and far from a deal-breaker, but it is a bit o…
It sounds like Paste and Indent is what you're after: Command+Shift+V, or some users prefer to just bind this to Command+V, a la TextMate.
edit: if anyone is curious,
Preferences > Key Bindings > Default [edit: should use User as noted below]
ctrl+f paste, and change
{ "keys": ["super+v"], "command": "paste" },
{ "keys": ["super+shift+v"], "command": "paste_and_indent" },
to { "keys": ["super+shift+v"], "command": "paste" },
{ "keys": ["super+v"], "command": "paste_and_indent" },Re: Sublime Text 2.0 Released
#37Re: Sublime Text 2.0 Released
#38I've reverted back to Vim (not really ST2's fault, just that it doesn't run in a terminal and I've gotten addicted to split-panes in iTerm), but ST2's a solid editor. Definitely worth your $60. PS: If it got even a basic terminal... EDIT2: ST2 does have split panes, I just can't run a terminal in them.
EDIT: Some insane person seems to have done this: https://github.com/wuub/SublimePTY
Re: Sublime Text 2.0 Released
#39Re: Sublime Text 2.0 Released
#40I've reverted back to Vim (not really ST2's fault, just that it doesn't run in a terminal and I've gotten addicted to split-panes in iTerm), but ST2's a solid editor. Definitely worth your $60. PS: If it got even a basic terminal... EDIT2: ST2 does have split panes, I just can't run a terminal in them.