1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 04:27:59 +01:00

Use | rather than \ for the toggle view-source command.

\ conflicts with the default map-leader.

--HG--
extra : transplant_source : %83%DF%5D2%8FJ%7B%29X%EF%5B%09%AB%84ON%D7%0CEz
This commit is contained in:
Doug Kearns
2009-09-27 02:06:39 +10:00
parent 688b529fdc
commit 41a1a4cda0
4 changed files with 6 additions and 6 deletions

View File

@@ -324,7 +324,7 @@ function Buffer() //{{{
"View source with an external editor",
function () { buffer.viewSource(null, true); });
mappings.add(myModes, ["\\"],
mappings.add(myModes, ["|"],
"Toggle between rendered and source view",
function () { buffer.viewSource(null, false); });