Atom 1.1 Released
Written by Kay Ewbank   
Thursday, 05 November 2015

GitHub has released a new version of its Atom editor with the addition of live Markdown preview, better character measurement, fonts with ligatures and variable width fonts.

 

Atom 1.1 is the first stable release to pass through the new Atom beta channel. This was announced earlier in the month, when Github's Nathan Sobo said it would mean that all changes would now spend time being tested in a beta phase rather than being released directly from the master branch.

 

attomicon

 

Atom was released last year as GitHub's cloud hosted editor. It was created by taking the source code of Chromium, the open source browser that Chrome is based on, and customizing it to work with the Atom web app. While this is mainly an HTML/JavaScript based web app, it doesn't run in a browser. It can be extended using JavaScript, is Node.js based and you can load any code using require.

The new version has taken a different approach to character measurement. Because Atom measures runs of text on screen to absolutely position the cursor, selections, highlights, and overlay decorations, it measures text from the DOM to overcome the problem of Chrome lacking a text measurement API. The Atom blog explains

"The problem with measuring from the DOM is that it forces a reflow, and these measurement-triggered reflows were a major source of slowness in early versions of Atom".

To solve this, the developers avoided DOM measurement by caching the widths of each character in different styling contexts, which ignored the fact that characters can have different widths depending on their context, and caused problems when sub-pixel font scaling was enabled in Chrome, forcing the developers to patch Electron for a few releases to disable it.

The new release reworked the way positions were measured from the DOM, rendering everything that doesn't require absolute positioning, then forcing a reflow before doing a second phase of the update. The developers say that by combining this approach with some improvements to the layout and style recalculation times, they found room for direct measurement in their 16ms frame budget.

Support for fonts containing ligatures such as monoid, FireCode and Hasklig has also been added to the new release. To use them you install the font, then enable it by adding a reference to your stylesheet. Support for variable width fonts has also been added.

 

fontslig2

 

The Markdown Preview improvement means that when you view the rendered HTML markdown, it will have been adapted to match your syntax theme's color scheme.

Other improvements include reduced GC pauses when you'e scrolling in the editor, and a new fuzzy search library.
 

atomsquarenov

More Information

Atom

Atom 1.1 is out

Related Articles

Atom 1.0 - GitHub's Hackable Editor Becomes Stable

Orion 9.0 Released

    

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on, Twitter, FacebookGoogle+ or Linkedin.

 

Banner


Flox Releases Flox Hub
13/03/2024

Flox has announced that its Command Line Interface (CLI) and FloxHub are now generally available. The CLI is open source and FloxHub is free for anyone to use.



Quantum Computers Really Are A One Trick Pony
17/03/2024

Google is offering $5 million if you can think up a use for a quantum computer. Wait, I thought quantum computers were the next big thing, a revolution! Surely we know what they can do?


More News

 

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info

 

 

Last Updated ( Thursday, 05 November 2015 )