Earlier quoted context omitted.
Find and replace on steroids, meaning the flexibility of moving the cursors around in all instances of a find and making edits near the beginnings and ends of lines, for example.
Not trying to diminish the use of multiple cursors (I have certain fondness for them despite not using them extensively due to my choice of editor), but using regexes you can still do that (i.e. with /^/ and /$/, which I use constantly with vim-style search and replace)
Slap – A Sublime-like terminal-based text editor
21–30 of 123 posts
Re: Slap – A Sublime-like terminal-based text editor
#22Every one of the listed features is also available in Vim. I fail to see how this is either Sublime-like besides the keybindings (since a file pane is available on both Emacs and Vim) or will cause me to leave Vim or Emacs behind. That said, I can definitely see this replacing Nano for some folks.
It is supposed to be in vim, but I always forget how to use it and the few time I tried it just didn't work.
Re: Slap – A Sublime-like terminal-based text editor
#23Re: Slap – A Sublime-like terminal-based text editor
#24Earlier quoted context omitted.
What is the use of multiple cursors? Something that does not boil down to copy-paste programming. UPDATE: From the answers below, I see that the point is the immediate visual feedback it gives.
Find and replace on steroids, meaning the flexibility of moving the cursors around in all instances of a find and making edits near the beginnings and ends of lines, for example.
For people who don't know regular expressions...
Re: Slap – A Sublime-like terminal-based text editor
#25Re: Slap – A Sublime-like terminal-based text editor
#26The best feature of vim is its ubiquity; I feel at home on almost any computer. I find myself shying away from anything too specialized that could become a crutch, maybe to my detriment.
Re: Slap – A Sublime-like terminal-based text editor
#27Every one of the listed features is also available in Vim. I fail to see how this is either Sublime-like besides the keybindings (since a file pane is available on both Emacs and Vim) or will cause me to leave Vim or Emacs behind. That said, I can definitely see this replacing Nano for some folks.
You can control vim with mouse? Huh, TIL.
Re: Slap – A Sublime-like terminal-based text editor
#28Every one of the listed features is also available in Vim. I fail to see how this is either Sublime-like besides the keybindings (since a file pane is available on both Emacs and Vim) or will cause me to leave Vim or Emacs behind. That said, I can definitely see this replacing Nano for some folks.
> copying/pasting with OS clipboard support It is supposed to be in vim, but I always forget how to use it and the few time I tried it just didn't work.
Is generally what you want (named buffer +).
http://vim.wikia.com/wiki/Accessing_the_system_clipboard
I used to keep forgetting too, and then I started using it a bit (on Windows, where selecting text and shift-insert doesn't work).
Re: Slap – A Sublime-like terminal-based text editor
#29I never really used Sublime, but I find the idea of splitting an editor into frontend and backend to be worth exploring. Lime does it https://github.com/limetext/lime , NeoVim does it.
Re: Slap – A Sublime-like terminal-based text editor
#30Earlier quoted context omitted.
> copying/pasting with OS clipboard support It is supposed to be in vim, but I always forget how to use it and the few time I tried it just didn't work.
"+y / "+p Is generally what you want (named buffer +). http://vim.wikia.com/wiki/Accessing_the_system_clipboard I used to keep forgetting too, and then I started using it a bit (on Windows, where selecting text and shift-insert doesn't work).