Is there a way to disable code analysis (the light bulb) in IntelliJ? I really don't care about code improvement suggestions as I'm viewing some third party code. I've already unchecked everything single feature in Project Settings -> Inspections.
I'm using IntelliJ 10.5 to edit ActionScript code.
On the status bar, there is a little icon showing a man. If you click on it, you can change the inspection level: nothing, syntax, full analysis.
To disable inspections:
Settings > Project Settings > Inspections
Click the 'Reset to empty' icon (looks like an eraser)
To disable intentions:
Settings > IDE Settings > Intentions
Uncheck all of the boxes here
I have concluded that it's not possible to completely disable Inspections in IntelliJ 10.5 (at least while editing ActionScript) possibly due to a bug.
Follow-up: IntelliJ support is saying this may be a bug.
Edit April 2017: Finally there is a workaround, in particular add:
<option name="SHOW_INTENTION_BULB" value="false" />
to IdeaIC2017.1/options/editor.xml. If there's no editor.xml then create a new one as such:
<application>
<component name="EditorSettings">
<option name="SHOW_INTENTION_BULB" value="false" />
</component>
</application>
I believe you're looking for "Intentions", not "Inspections", though I don't know a way to turn them of globally.
Related
not sure where to ask:
is there a way to not have the help tooltip/popup/hover window opening in spyder?
since updating to 4.0 the window does not close when you change between windows:
guess something like this will be reported and delt with in future updates but for now i would be happy to just disable it
(using 64-bit windows-10 machine)
(Spyder maintainer here) Yes, there is. You need to go to the menu
Tools > Preferences > Completion and linting > Introspection
and deactivate the option called Enable hover hints.
Note: The issue you posted above with the hover not hiding when giving focus to other applications will be fixed in our next bugfix version (4.1), to be released in a couple of months.
I am using TFS 2017 update 2 on premise for CD .Log window is not working when i open the log for the completed release. Please refer the below screenshot
https://i.stack.imgur.com/KAD79.jpg
"Advanced Code Editor " Extension is enabled.Let me know how to proceed on this
Take a look in the _admin/_extensions page, if there list the Advanced Code Editor Extension already.
Try to disable and then re-enable it, see if it do the trick.
If above step do not work, try to directly delete the extension, this left the Legacy Extensions area empty. Finally check the release log window again.
Update
Reinstall the Legacy Extension,all you have to do is this:
Create a manifest.xml file with the following contents:
<Extension name="Advanced Code Editor Extension" id="{70D19AD3-93FA-437B-8CCE-CD80AA405F69}" version="1.0" min-host-version="11">
<Description>Provides advanced source control file and diff viewers to TFS</Description>
<Vendor>Microsoft</Vendor>
<Integrations>
<Frame end-point="tfs.source-control.file-viewer" url="{TfsRootPath}_BuiltInExtensions/_CodeEditor/Edit">
<Properties>
<Property name="name" value="Advanced Code Editor"/>
</Properties>
</Frame>
<Frame end-point="tfs.source-control.diff-viewer" url="{TfsRootPath}_BuiltInExtensions/_CodeEditor/Diff">
<Properties>
<Property name="name" value="Advanced Code Editor"/>
</Properties>
</Frame>
</Integrations>
</Extension>
Then go to your [tfs-url]/tfs/_admin/_extensions page and at Legacy Extensions pick the manifest.xml file. The Advance Code Editor will get installed. (again). Enable it and check if the issues are gone.
I am trying to shift Dreamweaver to Netbeans 8.1, I want to preview html code but I cannot find any short cut or any icon to preview. Should I install plugin for it? I tried this plugin http://plugins.netbeans.org/plugin/51003/html-preview but donot work for 8.1.
Anyone have Idea about it?
Thanks in advance
There is no "native" support for HTML preview in NetBeans. You can run (open) the file in browser from IDE. How to do it depends on type of project but generally if you right click on the file in NetBeans, there should be something like "Run File"
For Netbeans 8.2
Option 1:
Right-click and choose "View" from the context menu.
Option 2:
Go to Preferences > Keymap, search for "View", assign a key shortcut of your choice to "View" that belongs to "System" category.
"Customizing" the toolbox panel by adding "Web browser" icon to it didn't work for me: instead of displaying my HTML file it opens a Netbeans' front page, bragging how brilliant this IDE is. Very helpful indeed.
I copied my grails app to another computer and now .gsp files do not open in the editor. They also show a G icon with an arrow next to them. Dragging and dropping or double clicking do nothing. Updating intellij didn't help either
As Dónal mentioned, Grails is not one of the frameworks supported by IntelliJ IDEA Community Edition (you need the Ultimate Edition). You can view the feature comparison here.
Hi I am probably answering now when u no longer need the answer but I bumped into the same issue yesterday and only solved it now. There are chances that you associated the .gsp file type with a program which cannot be opened by intellij in your case GOSU. To fix it go to: File>Settings>Editor>File Types
In the file types go to Gosu Program Source and *.gsp should be in the registered patterns. Remove it and apply changes then you are good to go.
Re-installing community version fixed and gsp files now open in the editor
Being a .Net developer I've vastly worked with Visual Studio and Jetbrains Resharper.
When using Resharper and VS, autocomplete suggestions appear when suggestions contains word being typed rather that start with. I've seen similar behavior in Jetbrains AppCode.
but Xcode, with default settings, just shows suggestion when the suggestions start with the word being typed!
Just wondering if we can somehow modify this behavior to suggest words containing rather than starts with.
I've looked at Xcode >> Preferences >> Text Editing, but couldn't find anything.
P.S. Why I'm not using AppCode if I need this feature? My 30 days trial evaluation is up!
As this question come in first place in search engine, i give a solution for people want this feature:
https://github.com/FuzzyAutocomplete/FuzzyAutocompletePlugin
just go to Xcode organizer and delete Derived data.
Clean Trash.
Restart Xcode.
It will working fine.