Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Kërkoni te Asistenca

Shmangni karremëzime gjoja asistence. S’do t’ju kërkojmë kurrë të bëni një thirrje apo të dërgoni tekst te një numër telefoni, apo të na jepni të dhëna personale. Ju lutemi, raportoni veprimtari të dyshimtë duke përdorur mundësinë “Raportoni Abuzim”.

Learn More

Formerly I could change the default HTML viewer to Notepad using about:config (view_source.editor.external etc.) Now this fails. Why?

  • 1 përgjigje
  • 1 e ka hasur këtë problem
  • 12 parje
  • Përgjigjja më e re nga cor-el

more options

Environment: Windows 7, Firefox 53.0.3 (32-bit) Add-ons: Firebug, NoScript and Browser-Security. These were installed previously. I installed Adblock Plus, but switched it off as it seems to slow down the browser.

Problem: I build websites using plain HTML and self-developed HTML macros. In order to edit a macro page for a specific goal, I open the page in Firefox and use ctrl-U to edit the source HTML code in Notepad. After editing I save the page and refresh it in Firefox. This used to work up to a few months ago. Now I found the settings in about:config were changed back to default, possibly after a recent update to Firefox.

Setting the relevant switches in about:config doesn't work for me:

    view_source.editor.external  -->  true
    view_source.editor.path  --> C:/windows/notepad

instead of opening notepad, Firefox keeps displaying the standard source viewer which doesn't include an editing and saving function.

Any ideas how to solve this?

Environment: Windows 7, Firefox 53.0.3 (32-bit) Add-ons: Firebug, NoScript and Browser-Security. These were installed previously. I installed Adblock Plus, but switched it off as it seems to slow down the browser. Problem: I build websites using plain HTML and self-developed HTML macros. In order to edit a macro page for a specific goal, I open the page in Firefox and use ctrl-U to edit the source HTML code in Notepad. After editing I save the page and refresh it in Firefox. This used to work up to a few months ago. Now I found the settings in about:config were changed back to default, possibly after a recent update to Firefox. Setting the relevant switches in about:config doesn't work for me: view_source.editor.external --> true view_source.editor.path --> C:/windows/notepad instead of opening notepad, Firefox keeps displaying the standard source viewer which doesn't include an editing and saving function. Any ideas how to solve this?

Krejt Përgjigjet (1)

more options

Note that you may need to escape a '\' as '\\'.

What path do you see if you evaluate this code in the Scratchpad?

You can open the Scratchpad (Shift+F4) and run the below posted code to check the view source path. Open the Environment menu in the Scratchpad and select Browser to run the code in Browser environment. You will see a warning bar: This scratchpad executes in the Browser context.

  • paste this code in the editor area
  • click Run to run this code
  • click Display to see the result

viewSourceAppPath = Cc["@mozilla.org/preferences-service;1"]
.getService(Ci.nsIPrefBranch)
.getComplexValue("view_source.editor.path",Ci.nsIFile);
viewSourceAppPath.path;