1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 22:37:58 +01:00

Revert "Fix some zi/zo issues."

This reverts commit b39be7b367528d9a86380c3ec5c2a6fcafd2cd22.
This commit is contained in:
Kris Maglione
2009-03-30 01:19:29 -04:00
parent 5f27bf99da
commit 2a88d8a3bf
7 changed files with 71 additions and 40 deletions

View File

@@ -214,7 +214,13 @@ function Buffer() //{{{
mappings.add(myModes, ["<C-c>"],
"Stop loading",
function () { window.BrowserStop(); });
function ()
{
if(config.stop)
config.stop();
else
window.BrowserStop();
});
// scrolling
mappings.add(myModes, ["j", "<Down>", "<C-e>"],
@@ -596,7 +602,17 @@ function Buffer() //{{{
commands.add(["st[op]"],
"Stop loading",
<<<<<<< HEAD:common/content/buffer.js
function ()
{
if (config.stop)
config.stop();
else
window.BrowserStop();
},
=======
function () { window.BrowserStop(); },
>>>>>>> a9f04ee3d00b282e7a91b37eb23168fb39e9de5b:common/content/buffer.js
{ argCount: "0" });
commands.add(["vie[wsource]"],