Join the AMA (Ask Me Anything) with Firefox leadership team to talk about Firefox priorities in 2024. Mark your calendar! Thursday, June 13, 17:00 - 19:00 UTC.

Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

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 wótegrono
  • 1 ma toś ten problem
  • 12 naglědow
  • Slědne wótegrono wót 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?

Wšykne wótegrona (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;