Some enhancements

I don't know if this was posted before, but since I am trying VS.PHP 2.4 I could realize about the lack of some features that has to be added to the plugin so that it can behave the same way as VS 2005 does:

- Files from windows explorer cannot be dragged and dropped into the solution explorer

- Suppose if I have an "images" folder in the solution with some images in there. I have created later a new image file and copied into that folder. Then I have pressed the refresh button in solution explorer, but that caused the "images" folder to disappear. To recover it, I have to press "Show all Files" button. I have to expand images folder (that has reappeared) and then right click the new image file and select "Include Into Project" option. After that, I can press "Show All Files" button again, and I could continue working as normal.

- I think it is necessary to enhance the autoindent feature. Sometimes it happens that when I pressed the ending bracket ( } ) for some PHP sentences, all the block is reindented not the correct way. For example, I have this code (this is only a test, but this happened a lot in real situations with the consequent annoyance):

<?php
                getProducts
();
                if (
true)
                {
                    echo
"uno";
?>

If I add the "}".. the block get indented this way:

<?php
                getProducts
();
                if (
true)
{
    echo
"uno";
}
?>

- Some tags or HTML elements aren't colored properly, for example &nbsp; element

- Intellisense doesn't work for HTML tags

This is at the moment...I hope you can add these features

Thanks
Jaime