WebStorm - Remove option from right click menu - webstorm

Hello I'm using WebStorm and would like to know how I could remove the Compile Typescript options from here:

Settings (Preferences on macOS)
Appearance & Behavior | Menus and Toolbars
Locate the Editor Popup Menu menu and adjust it as needed

Related

Is there an option to hide clang inline warnings in QtCreator?

Question
Can QtCreator be configured hide warnings in the editor window while still showing the warning icon on the left side?
Description
QtCreator 4.5 with Clang Code Model enabled shows warnings in 2 locations:
inlined in the code editor
in a pop-up appearing when hovering over an icon on the left side
In my opinion the former clutters GUI and the latter is both sufficient and less intrusive.
Here's an example:
I looked at QtCreator options including Code Model options and could not find any setting for that.
For Qt Creator 4.7.0, you have to go:
Tools > Options > Text Editor > Display
And then uncheck the 'Line annotations' option
Options > Text Editor > Display > Annotation next to line.
It helps me in Qt Creator 4.4.1.

WebStorm put spaces instead of tabs

I have setup WebStorm to use tabs under Preferences -> Editor -> Code Style -> Javascript. I have checked "Use tab character". I have not checked "Smart tabs".
When I make a tab character in any javascript editor I get two spaces.
Why does this happen?
I have a different project on the same computer on which this problem is not present.
I'm running on Mac Book Pro and WebStorm 2017.2.3.
Do you have .editorconfig file(s) in your project? Please try disabling EditorConfig support in Settings | Editor | Code Style by unchecking Enable Editorconfig support checkbox - does it help? Settings in the project .editorconfig override WebStorm preferences

No reverse debugging for C++ Eclipse project

I installed Eclipse CDT and MinGW on Windows 8.1 and can launch an "Hello World" project but have no reverse debugging controls.
I saw on the net that I had to activate them in the "Customize Perspective" dialog.
When I try to activate the different commands (like "reverse resume, reverse step into") in the "Tool Bar Visibility" tab I get the error message
the command cannot be made visible in this dialog
How can I enable the reverse debugging controls in Eclipse (CDT)?
I ran into the same problem (and error message) under Linux.
I followed this Eclipse FAQ entry which seems to be a bit dated. What I actually ended up doing was:
menu Window -> Perspective -> Customize Perspective...
tab "Action Set Availability": check "Reverse Debugging"
After enabling reverse debugging there, I still cannot change the visibility in the "Tool Bar Visibility" tab of the Customize Perspective Dialog but I get another icon in the tool bar that says "Reverse toggle".
upon turning on reverse debugging via that button I have the full set of reverse debugging controls in the tool bar.

run option gone from Microsoft Visual C++ 2010

I think I accidentally changed some settings in my MSVC 2010 compiler and now I can't find the compile and execute option. Also when I hit the tab button for indentation an arrow(->) appears. I wonder whats wrong??
Use the tools menu "Import and Export Settings" then select "Reset all Settings" to reset the settings back to default.
To reset editor blunder, just hit Ctrl+Shift+8, from inside the text editor itself. This is toggle-able option, which can be used to see white spaces. Sometimes useful!

How to run app from VC++ without debug?

I'm trying to learn to love Visual C++ 2010 Express, but it is difficult! I've just created a "Hello world" console app and compiled it - no problems. I now want to run it. It seems the only option open to me is to run it in the debugger - there is a "Run" button on the toolbar but it is disabled. I don't want to debug it - I really don't like debuggers! Is there any way of just running the app from inside the VS IDE?
If you can't see the "Start Without Debugging" command in the toolbar, go to "Tools -> Settings -> Expert Settings". Basic Settings hides lots of stuff you probably want to see.
Professional version of VC2010 doesn't seem to have this switch.
Open the Tools menu
Go to Customize
Switch to the Commands tab
Select the Debug category
Drag the "Start Without Debugging" command to the Debug menu item
Edit: Full disclosure, I don't actually have VC++2010 Express installed on this computer, so I'm just sort of winging it here.
If you want to have a "Start Without Debugging" icon on the menu bar instead of in the drop-down Debug menu (even if Tools->Settings = "Basic Settings"), do this:
Tools->Customize->Commands->(choose Menu bar)->Add Command->Debug->Start Without Debugging->ok.
Then Move Up/Down if you want to change its position.