Spyke

Posts

Pulsar v1.119.0 is live!

While a smaller release this time around, v1.119.0 still manages to pack a punch.

For macOS, we've gone to great lengths to ensure Pulsar should build just fine on macOS 13+, while our Linux users get greater compatibility for DevTools on various platforms. For our programmers, there's been more of the constant incremental improvements to various languages' built-in syntax highlighting and code folding this time around, with a focus on PHP, Python, Javascript, Typescript, Shell script, and C.

As always thanks a ton to all of those that support the project and keep it moving forward, we appreciate you all, and look forward to seeing you amongst the stars.

Pulsar v1.119.0 is live!https://github.com/pulsar-edit/pulsar/releases/tag/v1.119.0Open linkView original on lemmy.ml

Hot dog, it's another Pulsar release! Pulsar 1.118.0 is available now!

Get your grills ready, Pulsar v1.118.0 is cooking with gas! With lots of love to syntax highlighting, along with a zesty sprinkling of features and fixes. We've got Tree-sitter fixes and improvements from query tests, better documentation of our Tree-sitter usage, an updated PHP parser, and loads of improvements to Clojure, there should be a little something for everyone. But of course feel free to dive into the changelog for further details.

Hot dog, it's another Pulsar release! Pulsar 1.118.0 is available now!https://github.com/pulsar-edit/pulsar/releases/tag/v1.118.0Open linkView original on lemmy.ml

Better Late than Never, Pulsar 1.115.0 is here!

A week later than you’re accustomed to — but worth the wait! Pulsar 1.115.0 is available now!

Last month’s 1.114.0 release was full of fixes related to the recent migration to modern Tree-sitter. This month’s release is much smaller, but still dominated by Tree-sitter fixes affecting syntax highlighting, code folding, and indentation.

Better Late than Never, Pulsar 1.115.0 is here!https://github.com/pulsar-edit/pulsar/releases/tag/v1.115.0Open linkView original on lemmy.ml

February Community Update!

Last month was our biggest update to Pulsar we have had in quite a while, so in this blog we will be addressing some of the issues people have seen and what you can expect in terms of fixes and updates. Outside of that, we have some big changes to the Pulsar Package Registry backend that give (and document) a bunch of new filters and endpoints to the API, as well as a reminder for @maurício szabo's blog post detailing our biggest hurdle: the road to modern versions of Electron.

https://pulsar-edit.dev/blog/20240201-Daeraxa-FebruaryUpdate.htmlOpen linkView original on lemmy.ml

The quest for Electron LTS

In the beginning, Atom appeared. It created an API to make packages, but together with this API, it also allowed authors to use web APIs together with node.js packages, modules (including "native modules" - more on that later) and, finally, a special API that was used to communicate between the "main module" and the "browser part".

That last part, eventually, split from Atom and became Electron. And for a while, the Atom development was tied to the Electron one, meaning that an update on Atom usually meant an update on Electron, and vice-versa.

Unfortunately, that wasn't the case for a long time...

https://pulsar-edit.dev/blog/20240124-mauricioszabo-the-quest-for-electron-lts.htmlOpen linkView original on lemmy.ml

Unlucky for some, but not us. Our 13th release, Pulsar 1.113.0, is available now!

Welcome to the release of Pulsar 1.113.0, our first release of 2024. For this release we have enabled our modern Tree-sitter implementation by default, a new Tree-sitter PHP grammar, a huge update to our 'symbols-view' package, a bunch of bug fixes and an issue where we banish 😡 to the Netherrealm.

Unlucky for some, but not us. Our 13th release, Pulsar 1.113.0, is available now!https://github.com/pulsar-edit/pulsar/releases/tag/v1.113.0Open linkView original on lemmy.ml

Christmas has come early: Pulsar 1.112.0 is available now!

Welcome to our 12th regular release! It has been exactly a year since we put out our first tagged release and development continues. This month we have some new soft-wrapping options, some long overdue updates to PPM, improvements to our "GitHub" package, a new fuzzyMatcher API and our usual slew of bug fixes.

Christmas has come early: Pulsar 1.112.0 is available now!https://github.com/pulsar-edit/pulsar/releases/tag/v1.112.0Open linkView original on lemmy.ml

Modern Tree-sitter, part 5: injections

One annoying thing that software developers do is insist on writing in more than one language at once. Web developers are espeically obnoxious about this — routinely, for instance, putting CSS inside their HTML, or HTML inside their JavaScript, or CSS inside their HTML inside their JavaScript.

Code editors like Pulsar need to roll with this, so today we’ll talk about how the modern Tree-sitter system handles what we call injections.

https://pulsar-edit.dev/blog/20231110-savetheclocktower-modern-tree-sitter-part-5.htmlOpen linkView original on lemmy.ml

November Community Update

This month we have a couple of really significant changes to how Pulsar works internally by creating a couple of new APIs that can be used throughout the application, a new package to help you run code directly within Pulsar and our usual community spotlight to say thank you to those community members contributing to Pulsar's development!

https://pulsar-edit.dev/blog/20231004-Daeraxa-OctoberUpdate.htmlOpen linkView original on lemmy.ml

Modern Tree-sitter, part 4: indentation and code folding

Last time we looked at Tree-sitter’s query system and showed how it can be used to make a syntax highlighting engine in Pulsar. But syntax highlighting is simply the most visible of the various tasks that a language package performs.

Today we’ll look at two other systems — indentation hinting and code folding — and I’ll explain how queries can be used to support each one.

https://pulsar-edit.dev/blog/20231031-savetheclocktower-modern-tree-sitter-part-4.htmlOpen linkView original on lemmy.ml

Armed with a big ol' can of Raid: Pulsar 1.110.0 is available now!

Here we are with another Pulsar release, and this month we have quite a number of fixes and improvements. This time the focus has really been on bug fixes in order to improve the overall experience.

We have updates to PPM for newer toolchain compatibility, a new Autocomplete API, better error handling for a crash at launch with invalid config and a fix for PHP snippets.

Armed with a big ol' can of Raid: Pulsar 1.110.0 is available now!https://github.com/pulsar-edit/pulsar/releases/tag/v1.110.0Open linkView original on lemmy.ml

Modern Tree-sitter, part 3: syntax highlighting via queries

Last time I laid out the case for why we chose to embrace TextMate-style scope names, even in newer Tree-sitter grammars. I set a difficult challenge for Pulsar: make it so that a Tree-sitter grammar can do anything a TextMate grammar can do.

Today, I'd like to show you the specific problems that we had to solve in order to pull that off.

https://pulsar-edit.dev/blog/20231013-savetheclocktower-modern-tree-sitter-part-3.htmlOpen linkView original on lemmy.ml

Modern Tree-sitter, part 2: why scopes matter

In the last post, I tried to explain why the new Tree-sitter integration was worth writing about in the first place: because we needed to integrate it into a system defined by TextMate grammars, and we had to solve some challenging problems along the way.

Today I’ll try to illustrate what that system looks like and why it’s important.

https://pulsar-edit.dev/blog/20230927-savetheclocktower-modern-tree-sitter-part-2.htmlOpen linkView original on lemmy.ml