1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-19 22:57:59 +01:00

Kill 'mapleader'.

This commit is contained in:
Kris Maglione
2012-02-01 09:51:00 -05:00
parent 7e3868c15e
commit c4b52258b7
7 changed files with 12 additions and 53 deletions

View File

@@ -722,7 +722,7 @@ var HintSession = Class("HintSession", CommandMode, {
* Display the current status to the user.
*/
updateStatusline: function _updateStatusline() {
statusline.inputBuffer = (this.escapeNumbers ? options["mapleader"] : "") +
statusline.inputBuffer = (this.escapeNumbers ? "\\" : "") +
(this.hintNumber ? this.getHintString(this.hintNumber) : "");
},
});
@@ -1266,7 +1266,7 @@ var Hints = Module("hints", {
"Delete the previous character",
function ({ self }) self.backspace());
bind(["<Leader>"],
bind(["\\"],
"Toggle hint filtering",
function ({ self }) { self.escapeNumbers = !self.escapeNumbers; });
},