Jdeveloper run configurations missing in version 11.1.2.2.0 - ide

Just wondering if anyone else has experienced problems with JDeveloper 11.1.2.2.0 and run configuration options that appear when you click the dropdown next to the run and debug buttons?
In previous versions I always had several options available - for starting the client/server/etc. However in this version I do not always get the dropdown unless I click into a different project, then click back into the project I want to run. If anyone has discovered a more permanent fix for this I would love to hear about it.
Many thanks

This is a bug I also stumbled upon. Only other thing you can try is to use the run menu and check if you see the options in there.
I personally use trick you already know (switching projects).

Related

Intellij jvm doesnt show my console output

my problem is that when I write a code and run it, the console just doesnt show it.
I dont know anything about it and started new.
I installed a second time but still without success.
can you give me any tips to solve it, cause since two days I cant go on with my book.
thx very much.
If you're talking about the "Run" output, have you gone up to the "View" menu, then to "Tool Windows" then "Run"? That is where most of the view window settings are in IntelliJ (and other JetBrains products)

Anaconda Spyder Auto Complete DOES work, but it does not show the possible solutions

Sorry for another post like this, I found a LOT of them here asking how to enable auto-completion, but that is not my case.
If I declare a variable and then hit CTRL+Space it works - it will autocomplete it. What I am missing thought is, that is shows a list of the possible solutions while typing - how do I enable that? (They only show after hitting CTRL+Space, is there no feature like in IntelliJ where they show that during typing already?
(Spyder maintainer here) I guess what you are referring to is auto-completion on the fly, i.e. as you write on the Editor or Console.
Unfortunately, it's not possible to enable that right now (August/2018). However, it'll be available (but only for the Editor) in our next major version: Spyder 4, to be released in 2019.

Tooltip doesn't let me type text when it is appeared. IDEA's editor

I am working with Itellij IDEA (2017.2.4). I am not sure whether the reason is new version of IDEA, but I started to face it after new version installed.
When I type some code in editor and Tooltip is shown (it can be inspection or just parameters of method shown ect.) I cannot type new symbols until pressing ESCAPE button, it is not useful for me. Before updating the IDEA there was behavior when user types new code, tooltip is hidden without ESCAPE pressing. It was made hidden by any key pressed.
Actually maybe I just change some setting property unconsciously, if yes - what is the property needed to be restored to default?
How to make it hidden not by ESCAPE but by any button?
In next image I pictured the moment when only ESCAPE key can be pressed.
I'm not able to reproduce the issue, even when I use v2017.2.4 on windows. The behavior should be that you can still type even when the tooltip is present:
I can't think of anything in terms of settings that could cause this issue. If it's just the "parameter info" tooltip that is causing the issue, you can disable it (or just increase the delay time) from automatically popping up via the setting: Settings > Editor > Code Completion > "Parameter Info" > "Autopopup" You can then manually open it via the Parameter Info Action via Ctrl+P / ⌘P. The setting #Maciej-Białorucki mentioned will effect the time before other tooltips open. Setting to a high value might help if other tooltips are causing issues.
Personally, I find the auto popup useful. To troubleshoot why this is causing issues, I'd recommend trying the following:
Upgrade to v 2017.2.6 which was released yesterday. While I personally can't reproduce it, and I'm not seeing anything about it in the 2017.2.5 Release Notes nor the 2017.2.6 Release Notes, it can't hurt to try and upgrade.
Disable all third party plugins and restart IDEA. See if the issue persists. In my 14 years of using IDEA and helping people with it on the forums, I've seen 3rd party plugins having bugs that cause other parts of IDEA to misbehave. Since you recently upgraded, it's possible a 3rd party plugin is having a compatibility issue with the new version. If the disabling them solves it, use a binary search to as you re-enable the plugins to track down the culprit and then report the bug to the plugin's developer.
See if it happens in other projects. If not there may be something wrong with the project's configuration. (A long shot. But worth checking out)
As another long shot, you can try invalidating the caches and then restarting IDEA via File > Invalidate Caches / Restart... I have on occasion over the years seen a corrupted index file or cache cause strange behavior.
If none of the above work, I suggest opening a bug report with JetBrains at: https://youtrack.jetbrains.com
Check Tooltip initial delay(ms) option under Appearance in Idea settings.
As I divined there was a property in settings that influences to the behavior described in a question. So to continue writing code without pressing ESCAPE key you must uncheck the following property:
Menu page Settings -> Appearance & Behavior -> System Settings
Checkbox Accessibility -> Support screen readers (requires start)
(for more details see the link)

Intellij no longer showing "Compare" and "Compare with Local" in VCS tab

I have been using the various compare options frequently but now they do not appear in any project. Restarting intellij has not resolved the issue.
Has anyone else run into this and discovered a solution? Note in the following screenshot:
( a ) The Compare with Local is not shown
( b ) The git options should come up immediately : not in a nested popup.
Update For those who wonder about Compare with local wrt VCS (/git):here ya go..
Diff with local seems to provide the same behavior as Compare with local. To access that feature I had to add keystroke to the Keyamp.
It is beyond strange that the above behavior / problems just suddently popped up. I went ahead and nuked the project and rebuilt it- but no help
The screenshot has all the Compare options in there.
Not sure, but probably you mean the IDEA-171150 issue.
UPD. Compare with local is the action of FileHistory, and it is still there, e.g. for Subversion History
Local changes tab never had this, Git Log and new Git History do not have such now. It is now called Diff with local.
It is not possible to assign a shortcut for the Show Diff with local at the moment, unfortunately. There is a request opened to allow choosing the default behavior: https://youtrack.jetbrains.com/issue/IDEA-82019

How to toggle spell check with a keyboard shortcut in IntelliJ IDEA?

Currently I run with spell check disabled globally in IntelliJ as it ends up being more annoying than helpful most of the time. But there are many times where I'd like to quickly toggle it on and off to check the spelling of things I'm unsure of.
My current workflow in this case is to switch over to sublime then hit my toggle spell check key binding there and then jump back to IntelliJ, which isn't really ideal.
After Google searching around for it all I found was "how to disable spellcheck in IntelliJ" which I already know how to do and searching for "toggle inspection shortcut" was also unfruitful. So does anyone here happen to know if there's a way to bind toggle spell check(or toggle an individual inspection) to a keyboard shortcut in IntelliJ?
If not I might end up writing my own IntelliJ plugin today as I really really want this..
The best thing you can do with out-of-the-box functionality is using Analyze | Run Inspection by Name..., selecting "Typo" from the list and then selecting the scope to run it on.
If you want to run it with a single keyboard shortcut, you'd indeed need to write a simple plugin.
So I ended up making the plugin this late-ish afternoon in a couple hours (thank you yole for telling me it couldn't be done without a plugin before I started work on the plugin). I added the spell check toggle I wanted plus 3 custom toggle bindings that can be bound to any inspection you want.
It's currentley awaiting moderation to get in the JetBrains plugin repository but you can download the plugin jar from my website here.
And I put the source code up on GitHub here