Sidebar enhancement extension like for sublime text? - visual-studio-code

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

Related

how can i integrate vscode in my project as a text editor like tailwind playground

i have been searching online for vscode api to integrate vscode editor in my project as a text editor only the editor part like tailwind playground but i cant really find any usefull information not even in official site i am really curious to know is it publicly available to integrate vscode editor in any project or they have some special license or something

Sublime Autocomplete for Web Development

As the title shown, does anyone recommend autocomplete add-on for Sublime?
Or any recommended way to speed up the coding process of autocompleting the tags for web development in Sublime?
You can try Auto Close.
This will fullfill your requirement.
If you don't know how to install package. You can follow following steps.
First open package manager ctrl+shift+p
Search and select Add Repository. Then paste the github link.
After that again open package manager. Search and select Install
Package.
Search and select Auto Close
Then your are good to go.

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.

Cannot open solution file in Visual Studio Code

I have installed the Visual Studio Code on Windows. When I try to open a solution file in VS Code it opens the solution file, instead of opening all projects in solution. Is there a way to open existing project solutions in VS Code?
When you open a folder in VSCode, it will automatically scan the folder for typical project artifacts like project.json or solution files. From the status bar in the lower left side you can switch between solutions and projects.
Use vscode-solution-explorer extension:
This extension adds a Visual Studio Solution File explorer panel in Visual Studio Code. Now you can navigate into your solution following the original Visual Studio structure.
https://github.com/fernandoescolar/vscode-solution-explorer
Thanks #fernandoescolar
VSCode is a code editor, not a full IDE. Think of VSCode as a notepad on steroids with IntelliSense code completion, richer semantic code understanding of multiple languages, code refactoring, including navigation, keyboard support with customizable bindings, syntax highlighting, bracket matching, auto indentation, and snippets.
It's not meant to replace Visual Studio, but making "Visual Studio" part of the name in VSCode will of course confuse some people at first.
But you can open the folder with the .SLN in to edit the code in the project, which will detect the .SLN to select the library that provides Intellisense.
In the VSCode Marketplace look up and install vscode-solution-explorer

Create Project in Atom Editor

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.).