fedor.belov
fedor.belov

Reputation: 23323

WebStorm live edit doesn't work

I have installed WebStorm 5.0.4 + JetBrains Chrome Extension 0.3.11, checked View -> Live Edit. Now I'm openning index.html, right click, Open in browser. File is openned by Chrome (file:///D:/Dropbox/index.html) but live edit doesn't work

Chrome 23.0.1271.64 m, Windows 7. Option View -> Reload in Browser is not active, DevTools is not active

Added
I have opened background page of chrome extension and found a lot of errors
Unexpected response code: 400 chrome-extension://omlgoegcnmiikfiapaelkaichppahfkm:1

May be this is the reason of problem?

Upvotes: 4

Views: 11510

Answers (4)

ETiV
ETiV

Reputation: 11

Get Live Edit worked!

I'm using Webstorm on Windows, if you're using other IDE, please fit it yourself.

Edit file <WebStorm installed dir>/bin/WebStorm.exe.vmoptions.

For Mac OS, edit file /Applications/<WebStorm.app>/bin/idea.vmoptions.

simply add this single line:

-Drpc.port=53342

Then change the port number in plugin option page to the above port.

Live Edit should work now.

Upvotes: 1

Paul Lan
Paul Lan

Reputation: 675

Dude, don't do that if you have the latest version. Just:

  1. close Chrome
  2. close webstorm
  3. start webstorm
  4. start chrome

And click view->reload in browser, and make sure check view->live editing

Upvotes: 4

aciddoll
aciddoll

Reputation: 841

you might try this fix it worked for me but I'm on XP:

Download https://dl.dropbox.com/u/43511007/webide.jar and copy to WebStorm-install-dir/lib (replace existing file).

from :

http://devnet.jetbrains.net/thread/439550?tstart=0

Upvotes: 4

Related Questions