Live data from Hacker News

I still like Sublime Text

ohdoylerules.com

511–520 of 620 posts

Re: I still like Sublime Text

#511
I'm glad you're fond of Sublime Text.

Personally I'm totally sold on 'Vim' I have lsp through 'YouCompleteMe', which works great for C-languages, and I have Automatic update of tags with 'GutenTagsPlus', And I also use 'c-scope', 'Git' and 'Id-utils', and I have 'ulti-snips' which I probably use too little. So yeah, this and the GCC toolchain, is pretty much the ultimate for me, and I have tried a lot of Editors through the years.

Re: I still like Sublime Text

#512
post #132

Sublime rules. I started my career with Brackets, then Sublime, then Atom for a short while. Then switched to VS Code for a few years and just recently switched back to Sublime because of how slow VS Code became. Also great pricing! One time purchase for Sublime is still available in 2025!

Where is one time purchase available? The only option I see is $99 for three years.

Unlike traditional Saas, you can still use Sublime after 3 years. You just won't get regular updates.

I drive a 18 year old car. I don't need all the upgrades I just need something to drive me from a to b. This business model is similar.

PS I believe you can use it without paying anything. They nag you to pay but in a very subtle way.

Re: I still like Sublime Text

#513

I love Sublime Text. It's one of my favorite pieces of software. I have it running 100% of the time on every machine I work on. It's where I write all of my personal notes, blog posts, and it's where I wrote both "Game Programming Patterns" and "Crafting Interpreters". At the same time, it's not the tool I use as an IDE. For programming, I use whatever IDE is dominant for the language I'm working in. Over time, that'…

Same! I love that it is so snappy and fast, and don't choke on larger files. I use it for all of my non-programming note taking. I also hope it don't turn into a IDE.

Re: I still like Sublime Text

#514

I love Sublime Text. It's one of my favorite pieces of software. I have it running 100% of the time on every machine I work on. It's where I write all of my personal notes, blog posts, and it's where I wrote both "Game Programming Patterns" and "Crafting Interpreters". At the same time, it's not the tool I use as an IDE. For programming, I use whatever IDE is dominant for the language I'm working in. Over time, that'…

I've been a big fan of VS Code but the latest updates have shown Microsoft simply can't shake their addiction to bloating software with unnecessary features, so likely back to Sublime Text I go.

I've been running vscodium for a couple of years now, and they rip out the MS specific stuff so no ChatGPT and so forth. I haven't noticed any slowdowns.

Maybe give it a try? https://vscodium.com/

Re: I still like Sublime Text

#515

Earlier quoted context omitted.

Hey! I'm a Sublime Text user since ST2 in 2011. I love ST (my last blog post is https://blog.separateconcerns.com/2025-01-04-teal-lsp-sublim... ) and I think the main thing lacking compared to the competition is the remote development experience. I work in AI so we typically work over SSH on machines with big GPUs. Most of my colleagues use VSCode because it has a very good Remote Development extension.

This! Upvote for ST SSH remote development, currently using ST for local dev and VSCode for remote.

IMO remote mounts is a feature of the OS.

For Linux and macOS, you can mount ssh directly.

Unfortunatley, Windows makes it a little more complicated.

But there's hope. You can use yasfw with dokany (dokan fork).

https://github.com/DDoSolitary/yasfw

https://github.com/dokan-dev/dokany

Or mount from inside WSL.

Re: I still like Sublime Text

#516
post #273

Sublime 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.

Big fan of the tool. Sublime was one of the few editors that could even open the massive logs one project was generating. The recovery is so good, I've realized I had dozens of tabs unsaved for years until IT updated machines. One question: is there going to be another 3.x release? The popup takes you to a 4.x release, which is great if you are on 4.x. If it hit EOL, it makes it easy for us to force the update. Right…

ST3 won't be receiving any bugfixes or new features, so it's effectively EOL. Anyone's of course free to use ST3 or 2 or 1 if they don't wish to upgrade, we still make those available on our website.

Re: I still like Sublime Text

#517

Earlier quoted context omitted.

This! Upvote for ST SSH remote development, currently using ST for local dev and VSCode for remote.

IMO remote mounts is a feature of the OS. For Linux and macOS, you can mount ssh directly. Unfortunatley, Windows makes it a little more complicated. But there's hope. You can use yasfw with dokany (dokan fork). https://github.com/DDoSolitary/yasfw https://github.com/dokan-dev/dokany Or mount from inside WSL.

In principle I agree, in practice I haven't found an OS based filesystem mount that works as reliably as vscode. In particular, I mean the connection is relatively robust, reconnects automatically most of the time after an outage and editing is totally asynchronous, i.e. there's no noticeable pause after saving before continuing editing and no lag (other than what's induced by the electron) when editing.

Re: I still like Sublime Text

#518

Earlier quoted context omitted.

Maybe I'm a sucker, but I bought a license for Sublime in like 2009 and re-upped for a later version. I also actually bought WinRAR from Eugene. It's good to support dedicated devs who make high quality tools that you use all the time.

The line between dedication and delusion is apparently pretty blurry. One can't seriously expect to profit with closed software in a space where free and open alternatives are the norm. VSCode is open source, 7-Zip is open source, they are both objectively better in every way. If anything I would rather support those by contributing directly. Besides absurd levels of market saturation, code editors are a complement t…

That wasn't the case in 2009. And yeah, I do use 7zip mostly now, but it was a different story back then and WinRar was really fast and had really great compression and features. And who cares, it was like $20 or something.

Re: I still like Sublime Text

#519

Earlier quoted context omitted.

Why does sublime do code navigation in such a clunky way? Such as "go to definition". Control click does not work, instead you need to press the far away F12 key. It then opens up a new tab instead of an inline dropdown. Apparently that tab isn't normal text, it's clickable text. it contains usages as well as definitions so you need to manually scan and decipher the results. When you click on a result, it opens the f…

> It then opens up a new tab instead of an inline dropdown. Apparently that tab isn't normal text, it's clickable text. If you're talking about the built-in goto-definition then it's definitely not a tab, it's a popup similar to goto-anything and the command palette. You can type to filter, use the arrow keys, press enter, ctrl+enter for side-by-side, etc. If you want to use the mouse you can hover over the symbol an…

Thank you for responding. I was wrong about some of these in hind sight.

Today when I tried goto-definition, it worked as expected. I'm not sure why it didn't before. This was for a C project. I do have various Package Control packages installed:

  "Golang Build",
  "Package Control",
  "PackageResourceViewer",
  "SublimeLinter",
  "SublimeLinter-clang",
  "Theme - One",

And you were right, I had set my build process manually. I'm sorry for slandering.

What I meant by "terminal" is the output monitoring pane. Whenever I build "C - single file" or "Python - single file", a pane with behavior appears in the bottom, showing the program output. But if said program is interactive, there's no way to send it any input. Nor to stop the program. Building it again leads to a new instance of the program being spawned, but the old one stays running.

Post reply on HN