Markus
- Total activity 153
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 12
- Subscriptions 41
-
Created Use "Vim emulator" in database console window?
Any idea if it's possible to enable it there too?It seems it "is there" but I can't enter command mode with esc. However, sometimes during autocomplete and ESC it seems to be able to switch to it ?... -
Created Refactor class into new/different namespace?
Hello,how can I refactor a class into a new namespace or, basically change the namespace? Note that I'm not talking about renaming a namespace.Refactor form:{code}namespace foo;class bar {}{code}in... -
Created Permanently increase autcomplete window?
Working on a project with many long namespaces/classes the auto-suggester/autocomplete window often is too small; I can resize it but the new size doesn't stick. Is there a way for that?Using PhpSt... -
Created Per project "File and Code Templates"
I've code templates (PHP) that differ from project to project. Mostly it's about which information to pre-fill in the PHPDOC right now.Is there a way to separate those for different project? I can ... -
Created Code Style JavaScript: anomymous functions, no space before parenthesis
I've gone through Settings/Code Style/JavaScript numerous times, but the reformatter insisits on changing:function() {intofunction () {(a space is always inserted between 'function' and '(')Is ther... -
Created Debug remote console PHP (via SSH)?
Is it possible to debug remote CLI php execution with PhpStorm? With that I mean, run a script I've in my project on a remote server with full setting breakpoints and such?I've debugging over HTTP(... -
Created Search for symbol in a specific class
Hello,is there a quick way to jump into a specific method of a specific class? (Being on OSX) I know I can use CMD-O, SHIFT-CMD-O, etc. But it's either searching for a class or a symbol; my method ... -
Created How can I highlight PHP in a *.css file?
I've a CSS file which also includes PHP directives with <? and ?>.I cannot change the extension (framework requirement) but still would like to get PHP detection.For me currently it's not just the ... -
Created Polyglot development: using IntelliJ Ultimate a good idea?
Hello,I currently own a PhpStorm license and have RubyMine on eval and IntelliJ Community running too (sometimes I just need a little bit J).I've downloaded the Ultimate trial and configured it for... -
Created How to hint array of objects with phpdoc?
Hi,is there a way to document an array of objects of a certain class?e.g. @param $foo Someclass[] Array of objects of type SomeclassI tried various things but couldn't get anything definitive worki...