963 shaares
5 results
tagged
atom
You can search for spaces quite easily by simply typing a space in the find box and clicking the Find button, no special mode is needed. Other special characters can also be found pretty easily by using the “Regular Expression” mode of Atom’s find-and-replace package. A newline is \n in regular expression mode. A carriage-return is \r in regular expression mode. And finally, you can search for any single Unicode code point in the Basic Multilingual Plane 136 by using the \uhhhh construct where hhhh is the hexadecimal representation of that code point.
Visual Studio Code est présenté lors de la conférence des développeurs Build d'avril 2015 comme un éditeur de code cross-platform, open source et gratuit, supportant une dizaine de langages3.
Le code source est fourni sous la licence libre MIT (plus précisément la licence Expat) sur le site du projet sur Github. En revanche, l'exécutable est proposé sur le site officiel de Microsoft sous une licence privatrice4.
Le code source est fourni sous la licence libre MIT (plus précisément la licence Expat) sur le site du projet sur Github. En revanche, l'exécutable est proposé sur le site officiel de Microsoft sous une licence privatrice4.
In this article, I’ll introduce some packages for the code editor Atom, useful for previewing changes as you type (particularly for web development) and for compiling and executing code without needing to switch out of the editor to a console or IDE. I’ll also comment on why using them is a good idea.