Create Project in Atom Editor - github

Recently I moved from Sublime Text to GitHub Atom editor. I wanted to create new project in Atom editor. How do I do it?
Is there any way to migrate Sublime Text project files to Atom project files?

YES
Project management Sublime Style:
apm install project-manager

This is what you're looking for. With this package you can easily change between projects just like in Sublime editor.
https://atom.io/packages/project-manager

For those that are unsatisfied with dealing with multiple atom windows, check out https://atom.io/packages/project-plus
It allows you to switch between projects in the same window (and does it fast). It works almost identical to how sublime did (in that it remembers open buffers, temporary state, tabs, etc.).

Related

No JavaScript syntax highlighting in Eclipse 2020-09

I just upgraded to Eclipse 2020-09 (4.17.0) from Eclipse Luna. After installing, I installed Eclipse Web Developer Tools 3.19 from the Marketplace, then restarted Eclipse. When I open a .js file, there is no syntax highlighting. It was fine out of the box with Luna, so is there anything extra that I need to configure in 2020-09? File associations for *.js shows this:
It seems JavaScript files (*.js) have been associated with the plain text editor instead of the Generic Text Editor by mistake (please make sure it has been reported to Eclipse).
Right-click the file and choose Open With > Generic Text Editor.
Or better, associate all *.js files with the Generic Text Editor by right-click a *.js file, choose Open With > Other..., select the Generic Text Editor in the list and tick the Use it for all '.js' files* checkbox at the bottom (as shown in my video here).
Yes, you need to install the Wild Web Developer feature so that it provides that functionality through the Generic Text Editor.

Sidebar enhancement extension like for sublime text?

Is there a plugin that enhance the explorer context menu like the Side​Bar​Enhancements package for sublime?
https://packagecontrol.io/packages/SideBarEnhancements
I found the default one rather lacking in feature, just like vanilla sublime is.
left : VScode | Right : Sublime with SBE plugin
I think the one that gets closer to this is the file utils extension. Download it in vscode by search for file utils. This is their github repo https://github.com/sleistner/vscode-fileutils

Multiple projects on single window in Github Atom editor

Is it able to add multiple projects on same window in Github Atom editor as in sublime text?
Any options ?
The option to add multiple project folders has been added to the Atom editor in April 2015.
See this blog post for more information.
To use this feature, you have the following options:
Provide multiple folders on the Atom command line: atom ./folder1 ./folder2
Use the Application: Add Project Folder command from the command palette.
I'm using Atom 1.23 and you currently are able to do this.
All you have to do is go to File -> Add Project Folder

Vim integration with Aptana / Eclipse that includes usage of .vimrc files?

There are several vim plugins for Aptana/Eclipse, I'm wondering whether there are any well-integrated ones that also lets you make use of a .vimrc file and a .vim user folder.
Eclimd let's you embed Vim IN Eclipse. It is your real vim loading your own .vimrc. I think the embedding works only on Linux, on other platforms it will open a new gVim instance.
Vrapper does load a .vrapperrc file but it won't support much of your lovingly customized .vimrc: for example I've ported only 16 lines of my 459 lines long .vimrc to my .vrapperrc

Eclipse 3.3 default editor under Vista

I switched some months ago from Eclipse 3.0 under Win2000 to Eclipse 3.3.2 under Vista.
With my old platform, when I opened a file from eclipse navigator, for which no particular editor was configured, the file was defaultly opened with LPAD editor.
Now with my new platform, in the same situation, Eclipse delegates the choice to Vista, so to keep the same behavior I have to explicitly add the "unknown" extension in Window / Preferences, menu General / Editors / File Associations, and configure it to open with eclipse text editor.
Of course ".*" si not accepted like a valid extension, so I have to do it extension by extension.
And by the way there are tons of such "unknown" extensions I work with : .launch, .cvsignore, .pmd, .ruleset, .bindings, .csv (I want to edit such with textEditor, not excel), .vm, and so on...
From eclipse navigator I can open the context menu and select, for THIS particular file, to open it with the text editor, but it does not apply to other files with the same extension.
It's worse when opening the file from Open Resource dialog box, as in this case the context menu is not even available.
In a word, is there any way to configure eclipse 3.3.2 under Vista so that any file with an unknown extension will open with a given eclipse default editor ?
You do have (since eclipse3.2):
Open With->System Editor from the context menu
alt text http://www.myeclipseide.com/modules/ContentExpress/img_repository/docs/55M1/snaps_crossover.gif
That will pick the editor the system (here Vista) currently associates with your files.
But that still leaves you with the unpleasant task to set up the proper associations within the System itself (Vista)
There are some relevant feature requests for similar use cases (but they are there for years so don't expect to implement them soon):
Default editor for unknown extensions
File Associations doesn't accept standard wildcards
Currently you have to manage each important "dot-started names" individually in File Associations as you mentioned, I suppose.