I still like Sublime Text
231–240 of 620 posts
Re: I still like Sublime Text
#232Using Sublime Text since version 2, one of my relatively recent discoveries has been the Markdown Images Plugin[1], which renders images inline (rather than in a separate preview, as other editors do). I find it extremely convenient to include images alongside text, such as diagrams and schematics for work, photos of goods in a shopping list, and inspiration collections for hobby projects, etc. When combined with a s…
Re: I still like Sublime Text
#233Sublime Text developer here, thank you for all the praise! I'm looking forward to what we can accomplish this year. If you have any questions I'd be happy to answer.
That said, it seems like in 2025 AD the LSP client should come baked in and integrated, with configurations for how to start individual LSP servers possibly shipping on the side. I liked how the whole Go shebang was accessible in Zed in one click, same in VSCode.
That all said, I still use Sublime Text whenever I can.
Re: I still like Sublime Text
#234Earlier quoted context omitted.
I never get asked. It’s obvious. Just open a 4Gb log file as a developer. All my developers have it.
VSCode is just as fast for opening 4 GB log files
Re: I still like Sublime Text
#235I also use ST and use browser if I need some AI assisted coding. What about you guys? Is using IDEs with native AI coding plugin a good reason to switch away from ST?
Re: I still like Sublime Text
#236Sublime was going great at some point and I guess the dev burned out churning new releases every week. So it got abandoned for a good amount of time. Something like 2 years. At the same time Atom and VsCode came in with all the good ideas from Sublime. I hope they made tens of millions during the height of its popularity.
They are a company and they are still good. They changed their licensing model for v4 onwards. I have been using it for most of my note keeping and lite code editing tasks and its excellent as always. I think they can still get back to the old hype if they choose to use typescript for their plugin system. A lot of vscode plugins can be ported that way I hope
Re: I still like Sublime Text
#237I don't use ST3 as my daily driver (I use BBEdit instead - still not on the VSCode train), but I do use it for lots of random editing and scratch needs. Shameless plug - I wrote a plugin ages ago which makes it possible to replace and sort text using Python code ( https://nneonneo.github.io/sublime-replace-with-python/ ). This little plugin has been incredibly useful for certain tasks, and serves both as a useful pro…
Re: I still like Sublime Text
#238Sublime Text developer here, thank you for all the praise! I'm looking forward to what we can accomplish this year. If you have any questions I'd be happy to answer.
I bought sublime text 3 over a decade ago. What are the top new features of sublime text 4 that make it worth upgrading too?
* GPU rendering
* Apple & Linux arm64 support
* Tab multi-select
* context-aware auto-complete
* TypeScript, TSX and JSX syntax support
* Much more powerful syntax engine
* Adding python 3.8 for plugins
Some personal standouts not listed are: * Syntax-aware code folding
* Mixed-indentation highlighting ("draw_white_space" setting)
* Kinetic scrolling on Linux
* Preserved undo history
* Change-aware white-space trimming
* Asynchronous file saving
* Find result highlighting in the scroll bar
* Find-in-files filtering by gitignoreRe: I still like Sublime Text
#239Sublime Text developer here, thank you for all the praise! I'm looking forward to what we can accomplish this year. If you have any questions I'd be happy to answer.
Re: I still like Sublime Text
#240I don't use ST3 as my daily driver (I use BBEdit instead - still not on the VSCode train), but I do use it for lots of random editing and scratch needs. Shameless plug - I wrote a plugin ages ago which makes it possible to replace and sort text using Python code ( https://nneonneo.github.io/sublime-replace-with-python/ ). This little plugin has been incredibly useful for certain tasks, and serves both as a useful pro…
I've been trying out Lite XL, and I have a crude (WIP) plugin that can pipe selected text thru any shell command (sed, sort, etc), and either output to a new buffer, or replace the selection. Then I started writing some scripts to supply the commands I miss from Emacs, like align-regexp. Since it's just shell commands, you can write them in any language.
I'm not sure if I like Lite XL, but the scripts I already wrote would be easily reusable in any editor that supports piping selections. Perhaps it would be a fun project to create a collection of such portable scripts, sort of like what LSP did.