michael ussher
- Total activity 697
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 18
- Subscriptions 241
-
Created change the editor tab names? possible. instead of include.php something else.
Im working on a very modular system.Each module has the bulk of the code in 2 files 'index.php' and 'include.php'.so in one module I will be working on 'jrVideos' the files i will have open are:/j... -
Created Making nice function docs appear on ctrl+q
When I hover over a function and do ctrl+q the phpdocs for that function will be displayed in a popup dialog.Only the formatting isn't very nice. all the text that might be separated by linebreaks... -
Created getting sick of seeing "Failed to transfer file" "could not determine the type of file"
The auto upload is a great feature but it seams to be failing quite often for me. So far it has failed 6 times todayMy usual workflow is:* write something in the editor,* move the mouse up to fire... -
Created github "repository test has failed"
Im not able to checkout anything from Github.I can put in the "Git Repository URL" and have the "accept key YES / NOP" dialog open. click yes, it all seams to have worked, but on clicking TEST i g... -
Created SQL and constants, any way to retain syntax highlighting?
Hi,On the system I normally use the database tables are held in an array so I get queries like this: $sql = "SELECT * FROM {$jamroom_db['some_table']} "; ... -
Created Getting a plugin built that works in phpstorm?
I want to get a plugin built that works in phpstorm.I had a go at following the docs, ( http://confluence.jetbrains.net/display/IDEADEV/PluginDevelopment ) but im just not a java developer and the ... -
Created building a plugin with a toolWindow. newbie is stuck
Hi everyone.Im wanting to build a plugin for phpStorm that is another toolWindow.I have built what i want in php here:http://junk.hostsaba.com/index.php?pg=projects&t=list_allIts uses RESTful API t... -
Created how do i activate "Flip Binary Expression"?
I have some code that looks like this:$this->band_id = $band_id;and i want to flip it to:$band_id = $this->band_id;Its far more work asking this question that just writing out the code by hand, b... -
Created debug toolWindow wont open.
up until about 15 minutes ago, I would refresh the page in the browser on my local server and if the green telephone was on these things would happen:#1) a popup would ask me to ACCEPT or IGNORE t... -
Created smarty 'code style' settings for }else{ how to set the indent level?
when i am writing in .php files and do a code reformat it reformats like this:if($something){ print 'yes';}else{ print 'no';}The }else{ statement is inline with the if. As it should be in ...