Share checkbox in Run/Debug Configuration - intellij-idea

What is the purpose of "Share" checkbox in the Run/Debug Configuration screen?
I thought it's a way to share this configuration between projects, but when I open a new project, I cannot find this config in a list of predefined configurations or similar list.

This check box for sharing Run/Debug Configuration between team members. Check the Share option in this guide for more details. Also read this answer.

Related

Running/debugging project in Rider will not open browser window

When I run/debug a project in Rider, I have somehow turned off the property that opens the browser window after the project has built successfully. I have checked Run > Edit Configurations and compared it against an API project I have that does open the browser when ran/debugged, and cannot see a difference. I did some searching online and didn't find a definitive answer, so I'm reaching out here.
If anyone knows the specific property/setting/whatever to toggle in order to get the browser to open when running/debugging the project, I would be most appreciative.
Here is what it looks like for one of our projects targeting .NET Framework 4.8:
While examining the Run/Debug configs between the project that wasn't doing the expected behavior and the API project that was, I noticed that in the non-working project's Run/Debug config, the URL property wasn't set. After setting that to the localhost value I had been using, the page would start up as expected.

Share IntelliJ inspection profile between different projects

I have an inspection profile configured for one of my IntelliJ projects and have "Share profile" checked. When I'm in another project, the inspection profile I created is not available (doesn't appears in the dropdown combobox). Is there a way to create an inspection profile just once and use it across many projects?
I'm running IntelliJ 10.5.4.
Shared profile option means that it will be stored in the project and is shared with other developers via the project files. If you disable this option, inspections profile will be stored in IntelliJ IDEA configuration directory on your machine and you'll be able to use the same profile in multiple projects.
See also Inspections help section:
Share profile - Select this check box to make the selected profile available for your team, i.e to make it the project-level profile. If
you create IDE-level profile for your own purposes, clear this check
box.

How to write an IntelliJ IDEA Plugin?

IDEA has many plugins to use. I.e. IDEtalk is one of them which I use. How can I code a simple plugin that just connects to Internet and shows a web page? (no need for an address bar but it is not a problem to be). I want my plugin's shortcut's button locate at my IDE as like IDEtalk, Commander, Maven Projects etc.
Any ideas?
Check the documentation and the source code of the other plug-ins available in the public git repository of the Community Edition.
There is a Creating Your First Plugin guide on JetBrains web site. It covers all the needed steps from plugin creation to deployment to the plugin repository.
You might also want take a look in the source code of a simple plugin like Twitter Integration Plugin which I recently implemented. Or check a more complex one like this one.

IntelliJ Idea 10.5.2 WebLogic Deployment tab is missing context dropdown

IntelliJ Idea 10.5.0 WebLogic Run/Debug configuration documentation mentions context dropdown. I am using 10.5.2 version and cannot find this dropdown. Is there a way to configure application context without editing application server specific descriptor?
Actually it is mistake in documentation. There is no such option for WebLogic run configurations.

How to assign a keyboard shortcut to a run configuration in IntelliJ?

It seems you can assign a keyboard shortcut to almost everything else, but I can't see an option to do this for run/debug configurations?
The "run configurations" are listed in the drop-down on the IntelliJ toolbar. I'd like to setup a run configuration that can perform two maven tasks sequentially (jetty:stop and then jetty:run if you are interested), and assign a keyboard shortcut to this action.
Any ideas?
Finally! JetBrains has implemented this feature in IntelliJ IDEA v9.
in Idea 8 anyway, you can specify a shortcut to any file menu item- even Maven goals. Try settings- Keymap and look for the Maven goals. You will still probably need two keys. One for each action.