diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-09-27 02:06:39 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-09-27 02:06:39 +1000 |
commit | 41a1a4cda08b90cb0bbb02330d8270a7b436cea6 (patch) | |
tree | 84723b4fbe9148c535d456ab6c9799a6463226e6 /common | |
parent | 688b529fdce64af6bf6f1a92301e2ab83b94f130 (diff) | |
download | pentadactyl-41a1a4cda08b90cb0bbb02330d8270a7b436cea6.tar.gz |
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
Diffstat (limited to 'common')
-rw-r--r-- | common/content/buffer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/buffer.js b/common/content/buffer.js index 7a66a5f7..dc5a14bd 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -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); }); |