Switching to Sublime Text from Vim in 2017
21–30 of 71 posts
Re: Switching to Sublime Text from Vim in 2017
#22To go to the reverse route, I'm a SublimeText and Vim user that's debating going back to pure vim. Much of the functionality that I used ST for I found Vim could do naturally, with no plugins. This presentation taught me alot ( https://www.youtube.com/watch?v=3TX3kV3TICU ), such as basic command completion. There is some stuff that Sublime can still do that I don't think Vim can (multi-cursor editing comes to mind, a…
https://github.com/terryma/vim-multiple-cursors
I use this with NeoVim and it works perfectly.
Re: Switching to Sublime Text from Vim in 2017
#23I suggest taking a look at Atom before spending money on Sublime. The number of plugins and extension is just enormous. You might get surprised.
Re: Switching to Sublime Text from Vim in 2017
#24I would recommend vim-easymotion and command-t for a big speed improvement over relativenumbers and CtrlP. In my experience Sublime is _much_ slower than Vim.
Re: Switching to Sublime Text from Vim in 2017
#25I only have two comments: > Any popular editor usually has a “Vim mode” that you can install and you can achieve native Vim productivity. I would editorialize this to say "closish to native vim productivity", since there are virtually no vim mode plugins for popular editors which offer a complete set of vim features. Even EVIL mode (as of the last time I checked it) has a few notable discrepancies which arise from ma…
I think a lot of us can agree with the last bit, but that said VS Code is actually pretty darn nice.
The domain of minimal code editors is well explored and quite mature, and the platforms upon which VC runs are all quite stable with well known performance characteristics. If we can't make software work well under these conditions, we have bigger problems that we need to address.
Re: Switching to Sublime Text from Vim in 2017
#26Earlier quoted context omitted.
The tab-autocomplete when you hit the ":" key gives out written suggestions. All the plugins you know and love with Vim should work, and you can write new plugins in virtually language. New features tend to reach NeoVim faster than with regular Vim; most notably async support. NeoVim used the XDG system for configs, so it doesn't pollute your home folder with a bunch of dotfiles. And this might just be in my head, bu…
> The tab-autocomplete when you hit the ":" key gives out written suggestions. Can you explain this a bit more - how does this differ from vim's tab completion for ex commands? :e ~/.vim^I .vim/ .viminfo .vimrc :help ctrlp- 'ctrlp- ' ctrlp-options [...]
My bad!
Re: Switching to Sublime Text from Vim in 2017
#27Re: Switching to Sublime Text from Vim in 2017
#28I've recently switched from Sublime Text to Atom. I've used Sublime for a few years and was very unimpressed when I first installed Atom 2 years ago. For a long time it remained slow and clunky, but recently not only did they improve performance significantly but also made the whole user experience much easier and pleasant. I suggest taking a look at Atom before spending money on Sublime. The number of plugins and ex…
Re: Switching to Sublime Text from Vim in 2017
#29Is VIM with plugins really that slow compared to Sublime Text? I'm curious what plugins OP was talking about.