PhpStorm keystroke for navigate between Version Control panel tabs (Local Changes, Log, Console, Shelf) - phpstorm

How to navigate between Version Control panel tabs (Local Changes, Log, Console, Shelf) in PhpStorm?

Show Local Changes
Show VCS Log
Are two commands that you can assign a shortcut to jump to the relevant VCS tool window tab. I am not sure if there is a command for the "Console" tab unfortunately.
But if you're in the tool window already (Cmd+9orAlt+9) you can use Ctrl-Left/Right(Mac), Alt+Left/Right(Windows) to cycle tabs.

Related

Edit file from Sourcetree in PhpStorm

In Sourcetree you can right click a file (from current commit / branch) to edit, it then opens a window where a script target can be entered. What to fill in there so it opens the PhpStorm editor?
I work with a Mac
Ah.. with the finder click on a file, show info, open with, change all.
Then open in Sourcetree will use that application.

how to open chrome dev tools without key board shortcut or screen option and save data

There is a small server which trigger and open up a chrome. this chrome does not have file, edit menu at the top and keyboard shortcut are disable.
ask here is how to open chrome devtool in this unique case and save all data specially network capture and memory
I was able to start with command line
--auto-open-devtools-for-tabs
Please check here for other commands below
https://peter.sh/experiments/chromium-command-line-switches/

Run CloudEndPoints Explorer on Local HTTP

I'm trying to run the Api Explorer in LocalHost But it always show the Error
The API you are exploring is hosted over HTTP, which can cause problems.
So I follow the instruction
Go to File Explorer then paste this to address bar >> C:\Program Files (x86)\Google\Chrome\Application (or just go to where you can find your chrome.exe)
Right click chrome.exe > send to > Desktop (Create Shortcut)
Go to your desktop then find the chrome shortcut you've created.
Rename it to ChromeForTesting (this step is optional)
Right click the shortcut, then Click Properties
At the "Target", paste the following at the end of the link
--user-data-dir=test --unsafely-treat-insecure-origin-as-secure=http://localhost:8080
so Target should look somewhat similar to this
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --user-data-dir=test --unsafely-treat-insecure-origin-as-secure=http://localhost:8080
Click Ok..
During testing close all of your opened google chrome browser.
Then double click ChromeForTesting shortcut (the one you've created), when a prompt appears, just click ok..
But After compelting this When I run that shortcut it will give the error
you are using unsupported command line flag --user-data-dir=test --unsafely-treat-insecure-origin-as-secure=http://localhost:8080
I also try to click load unsafe script but this is also not working.
Here is screen shot.

Enabling Console tab in Version Control section of PhpStorm

How can I enable a Console tab in PhpStorm if it is not displaying?
Currently I have only Local Changes and Log tabs
The Console tab automatically opens when you perform a VCS operation.

enable/disable log levels google-chrome-devtools via settings

I can mistake, but how to enable or disable log levels in google-chrome-devtools using devTools settings?
so for ex: when I open console window in google-chrome devtools, there is a lot of debug messages. but need only warning and errors messages.
what there are better way to disable log levels in DevTools settings?
Thanks in advance.
You need to click the Filter icon in the Console tab to expose these settings. After the panel appears, simply click on the level you want to see and your logs will filter for that level. Use Cmd+Click (Mac) Ctrl+Click (Windows) if you want to select multiple, such as Errors and Warnings.