Visual Studio Code launch.json runtimeArgs with double quotes in the argument -


i'm running visual studio code 'debugger chrome' extension debug javascript. however, want run out of process pepper plugin while debugging.

outside of visual studio code passing following command line flags chrome.exe (among others):

--register-pepper-plugins="path_to_plugin";mime_type 

note: requires double quotes

to pass command line arguments chrome via visual studio code set launch.json following addition:

"runtimeargs" : ["--register-pepper-plugins=\"path_to_plugin\";mime_type"] 

i can see using processexplorer runtimeargs being passed chrome, escape character \ intact, chrome receives is:

--register-pepper-plugins=\"path_to_plugin\";mime_type 

rather than

--register-pepper-plugins="path_to_plugin";mime_type 

if remove escape character, get

--register_pepper_plugins= 

because second double quote matches first.

am doing blindingly obvious wrong here?


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -