Atom using System Proxy

If you simply modified .apmrc file, it would be reset every time when you reboot atom. See https://github.com/atom/apm#behind-a-firewall , you’ll find solution to this under the ‘Using a proxy?’ part. And then run cmd apm config set strict-ssl false apm config set https-proxy https://$Your_proxy P.S. Normally it’ll be fixed, but if a problem like SSL782 pops up, See … Read more

Atom JavaScript Autocomplete

Since JavaScript is loosely coupled, providing a working autocomplete solution is not as easy as for statically typed languages like Java. Your best bets with Atom are the following packages: autocomplete-plus – this is now bundled with Atom as the default autocomplete provider ternjs – this looks pretty good, but requires some configuration. I suggest … Read more

Selecting multiple lines in Atom

If I understand your question correctly, you want to select multiple lines and create a cursor at the end of each line. There are a couple ways you can achieve this: Using Split Into Lines Highlight multiple lines however you like. Use the Selection|Split Into Lines command (Cmd+Shift+L on OS X or press Cmd/Ctrl+Shift+P and type Split Into Lines) to split … Read more

How to replace tabs with spaces in Atom?

Atom has a built-in tool for this Activate the command palette (ShiftCmdP on Mac, CtrlShiftP on Windows/Linux) and search for “convert space” or “convert tab”. You should find these three commands are available: Whitespace: Convert Spaces to Tabs Whitespace: Convert Tabs to Spaces Whitespace: Convert All Tabs to Spaces Convert Tabs vs. Convert All Tabs … Read more

Is there a command for formatting HTML in the Atom editor?

Atom does not have a built-in command for formatting html. However, you can install the atom-beautify package to get this behavior. Press CTRL + SHFT + P to bring up the command palette (CMD + SHFT + P on a Mac). Type Install Packages to bring up the package manager. Type beautify into the search box. Choose atom-beautify or one of the other packages and click Install. Now you can use the default keybinding for … Read more

How can I run a Java program in Atom editor?

Get GitHub Desktop from GitHub Site. Run the installer to complete. Get Atom Windows installer AtomSetup.exe from Atom Site. Once Atom installation completes, it launches. From Package Menu, Navigate to “Settings View”. Click on the sub menu item “Install Packages/ Themes”. Type “script” in the search text box, hit Enter. Look for a package named “script” (run … Read more