Is there anyway to disable resharper 10 javascript features completely.
Go to ReSharper -> Options -> Environment -> Products and Features and disable JavaScript and TypeScript feature.
Related
Gnome 42 just removed duplicate settings from it which included the Applications theme.
42.beta
Beta release.
GNOME Tweaks 42 focuses on removing tweaks which are now duplicated by
Settings. Additionally, Tweaks 42 marks the GTK theme tweak as "Legacy".
In GNOME 42, the "Legacy Applications" setting will only apply to some
GTK3 apps and a limited set of GTK4 apps. Most core GNOME apps will
instead respect the user's dark and light mode preference via libadwaita.
Users interested in theming can continue to do so using more advanced
options such as the GTK_THEME environment variable
This is from the tweak tools github repo, now that applications is gone i cant change themes for my non legacy gnome applications. How can i apply themes for that, Someone please help.
Settings > Appearance > Style
Now all the updated gnome apps will respect theming from settings and things that are still using gtk3 will use the setting in tweaks
Is it possible to configure the foreground/background colours of the WebStorm Project Tool Window? I have been unable to find the settings.
No, as it's defined in UI theme. UI themes (used for dialogs, tool windows, etc.) are Java Look&Feels. This is a standard way to style Swing applications. As such, they are hardcoded and can't be changed easily.
Note that it's technically possible to install any third-party L&F into JVM and use it in WebStorm ( see http://docs.oracle.com/javase/tutorial/uiswing/index.html, https://weblogs.java.net/blog/kirillcool/archive/2005/08/intellij_idea_5.html for instructions). Custom themes can also be implemented as plugins, like Material UI and Afterglow Theme - you can give them a try.
Note that we’re working on a feature allowing themes customization in IntelliJ Platform. Please follow IDEA-132299 to get updates.
When I created project in VS2015 Roslyn is added by default, and I am also using Resharper in my project so can anyone help me to understand any advantages of Roslyn vs Re-sharper
Roslyn is CaaS (Compiler as a service) and enables several features in VisualStudio and additional extensions that can be installed. ReSharper doesn't use Roslyn, but has its own model for code analysis that already serves for over a decade.
Here is a comparison matrix:
https://www.jetbrains.com/resharper/documentation/comparisonMatrix_R2017_1_vs2017.html
Roslyn is the C# compiler and the default C# IDE features. You cannot have a C# project without Roslyn. Resharper adds more C# IDE features (some of these overlap with the default).
How do I use Qt in Visual Stuidio Code operating system Linux Mint 18?
Marketplace doesnt exist extension for Qt.
Maybe anyone knows more!
UPD.
I meant that by type Qt AddIn
You should give a chance for this extension: https://marketplace.visualstudio.com/items?itemName=ms-vscode.cpptools
With this, you can configure include paths for better IntelliSense results.
Configuring includePath
One way to configure e.g the QtCore module.
Ctrl + Shift + p to open command palette
Search for: C/Cpp: Edit Configurations
You should have a new tab called: c_cpp_properties.json
In configurations array you should edit the Linux section
Add your paths in the includePath setting e.g: /usr/include/x86_64-linux-gnu/qt5/QtCore
For more check this: https://github.com/Microsoft/vscode-cpptools/blob/master/Documentation/Getting%20started.md
IntelliSense engines
We recommend using the "Default" engine for the best IntelliSense experience. However, it is possible to explicitly choose the IntelliSense engine by editing your user or workspace settings. The setting you should modify is C_Cpp.intelliSenseEngine
Default - Visual Studio's IntelliSense engine, which is the default engine that provides semantic-aware IntelliSense features
Tag Parser - the "fuzzy" IntelliSense engine that provides quick but "fuzzy" results, is used to provide the fallback experience if the default engine is
More details about it:
https://github.com/Microsoft/vscode-cpptools/blob/master/Documentation/LanguageServer/IntelliSense%20engine.md
The methods for adding Qt headers to the cpptools extension have changed since the last answer. Options for doing so now include:
Automatically adding a found Qt header path by clicking on the light bulb above an IntelliSense error and selecting Add to "includePaths"...
Manually adding the Qt header paths to the settings UI, from the command palette, via C/Cpp: Edit Configurations (UI)
Manually adding the Qt header paths to the settings JSON file, from the command palette, via C/Cpp: Edit Configurations (JSON)
More info in this page of the new documentation.
You can use CMake with CMake tools extension.
Just create a CMake project in vscode and add qt framework to your project in CMakeLists.txt.
Link to the extension - https://marketplace.visualstudio.com/items?itemName=ms-vscode.cmake-tools
Use CMake with qt - https://doc.qt.io/qt-5/cmake-get-started.html
Apart from the C++ extension (cpptools) mentioned in other answers, there are also extensions for Qt Quick that add support for the QML language. The QML Syntax/Tools extension adds syntax highlighting, auto-completion, and also allows to run and test your Qt Quick app using QML Hot Reload: Visual Studio Code Extension for Qt Quick
I have Symfony projects in both version 2.7 and 3.1. PhpStorm has the Symfony Plugin and Twig Support plugin enabled.
When I work in the Symfony 2.7 version PhpStorm with give me suggestion for Twig output tags {{ }} like assets and dump etc.
The 3.1 version gives me no suggestions. Does anyone have an idea?
Configure the project like that (File => Settings => Languages & Frameworks => Symfony):
And Restart phpStorm.
Dont forget to install symfony plugin
in addition to #adashbob's answer.
make sure that the file mappings in the symfony plugin settings are correct.
2.7 and 3.0 use a different location for cache files.
2.7 - app/cache
3.0 - var/cache
the plugin isn't intelligent enough to know which version youre running.
You usually need to trigger the AutoComplete pop-up yourself by pressing CTRL + SPACE (this might be a different shortcut depending on your keyboard).
Check your file -> Settings -> Languages and framework -> PHP -> Symfony -> Activate the plugin for this project