Has anyone else experienced this before and know of a way to fix it? I'm working on PHP files which have inline HTML within the PHP code as follows:
<?
$html = '<html>'.$moreCode.'<head></head><body>'.$bodyCode.'</body></html>';
?>
Obviously this is a snippet of the real code - the file I'm working with is only 500 lines of code in total.
I'm finding that when I scroll through the file or try typing code anywhere in the file, the entire PhpStorm session pauses and resumes a second or two later. This is happening on every keystroke. The only workaround so far I have found is not to use HTML within PHP.
Inspections are all disabled. I tried enabling "Power Saving Mode" too but to no avail.
I am using PhpStorm 8.0.3 on Windows 7 Ultimate SP1 x64; Intel i5-3470 3.2GHz, 8GB RAM, SSD HDD. The file I am working on is network based, accessed on a Gigabit ethernet connection.
I would really appreciate any feedback, suggestions or solutions.
Thanks in advance.
Settings | Editor | Language Injections) -- any better? "The file I am working on is network based, accessed on a Gigabit ethernet connection." This also may be a problem as IDE requires really fast access to source files and may produce such random "freezes" it latency is too high for it. Try opening this file from local HDD/SSD -- any better? - LazyOne