Dotan Cohen
- Total activity 62
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 18
- Subscriptions 12
-
Created API for controlling PhpStorm, such as adding breakpoints
Is there an API by which an external process could instruct PhpStorm to add a breakpoint to a line of a file? Such as: $ phpstorm --action SetBreakpoint --targetFile /var/www/foo/bar.php --targetLi... -
Created Use OS windows for modal dialogues
How does one configure PhpStorm to use standard OS windows for modal dialogues such as the Find In Files (Ctrl-Shift-F) and Open File (Ctrl-Shift-N) dialogues? I often want to manipulate or tab awa... -
Edited Step Filters recursive directory
How does one instruct Step Filters to ignore all code in the `/foo/vendor/laravel/framework/` directory? Simply adding that path to Step Filters Files did not work. That is, when Stepping Into code... -
Edited Editor REST Client: Easily manage long list of POST parameters
Consider a POST request with many POST parameters: POST /submit.php HTTP 1.1Content-Type: application/x-www-form-urlencodedfoo1=bar&foo2=bar&foo3=bar&foo4=bar&foo5=bar&foo6=bar&foo7=bar&foo8=bar&fo... -
Created Change editor tab colour based on user-configured regexes.
I would like to create a Plugin to change the colour of the editor tabs based on user-configured regexes. This would allow coders to highlight tabs which are part of the specific theme / plugin / c... -
Created Feature Request: Find usage of __toString()
Currently PHPStorm will not find instances where class objects are used as a string, i.e. `echo $this;` or `$foo = new Foo(); echo $foo;`. I suggest an inspection on __toString() which would find... -
Created How to open the 'Gear Icon' via a keyboard shortcut?
How does one open the Debugger console's Gear Icon with the keyboard? Once the icon is open the user can hit Ctrl-W to switch the Debugger to Windowed Mode, but how to get the relevant menu to disp... -
Created Go To Implementation not recoginsing classes in Wordpress integration.
When using Go to Implementation or Go to Definition in Wordpress `functions.php` file, the following code example works as expected: ``` add_action('after_setup_theme', 'foo'); function foo(){ } ``... -
Created Exception Breakpoints not breaking execution.
I am trying to have PHPStorm break on exceptions, as described in this post:https://blog.jetbrains.com/phpstorm/2013/12/just-in-time-debugging-and-php-exception-breakpoints-with-phpstorm-and-xdebug... -
Edited Set ,, to add argument to function or array.
I'm a VIM user currently evaluating PHPStorm. As both VIM and PHPStorm so nicely complete the second [single|double] quote when opening the first quote, I have VIM configured to let me easily add a...