Sean Clarke
- Total activity 56
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 18
-
Created Autocomplete of SPL Library Functions
SPL Library Functions are included as part of PHP as standard. So when I'm typing in something like $dir = new RecursiveDirectoryIterator I'd expect autocompletion on RecursiveDirectoryIterator to ... -
Created Toolbar icons have turned into aliens
AnsweredHi, rebooted my PC after the weekend, started PhpStorm, and noticed that some of my icons on the main toolbar have turned into "Aliens" What's going on - how can I get them back to be the icons t... -
Created Functions not being listed for FilesystemIterator
$files = new FilesystemIterator( 'my-first-website', FilesystemIterator::UNIX_PATHS);foreach ($files as $file) { echo $file->getFilename() . ' is ' .$file->getSize() . ' bytes.' . '<br>'; echo ... -
Created Convert to Paragraph Tags
I want to be able to quickly wrap textual content (with line breaks) into a number of paragraphs. So I paste in Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eg... -
Created Simple step-by-step process to create a new project for a wordpress plugin or theme
Hi,I've browsed lots of forums and website and can find lots of bits on this topic but nithing that give a very easy, stpe-by-step process of how to.- Create a new project (from existing files) for... -
Created Best wya to create a shortcut for Bold in HTML
For as long as I've been using an IDE - Ctrl B has taken the selected text and wrapped it with <strong> tagsand Ctrl I has wrapped it with <em> tagsHow can I change PhpStorm to do this?I know Ctrl ... -
Created LESS to CSS file hierarchy not shown in project files view
When transpiling LESS into CSS, the hierarchy relationship is dislpayed in the Project window, thus you will naturally edit the .less file.This however is NOT the case when you filter the display t... -
Created PhpStorm - Configuring to edit Wordpress - unable to find functions
I've followed all of the help I can about configuring PhpStorm to work with a Wordpress site. - I've enabled Wordpress Integration and pointed this to the WAMP wordpress directory on my local hard ... -
Created Create Project from Existing files copying files marked as Excluded
When I create a project from existing files, as part of the project settings I choose to mark some folders as 'Excluded'I was under the impression that these files would not be copied from the remo... -
Created wrapping selection of multiple lines with multiple tags
Hi,I know that I can wrap a selection with a tag or other items using CTRL + ALT + T or CTRL + ALT + JThis however just wraps the selection with a single tag (no matter how many lines the selection...