diff options
| author | Stephen Blott | 2015-06-04 13:39:44 +0100 |
|---|---|---|
| committer | Stephen Blott | 2015-06-04 13:39:44 +0100 |
| commit | 01dce1cd588adc2306dd4ea02399ac9ba97372df (patch) | |
| tree | d914bcda4a5191a135b8ad11116006c362359999 | |
| parent | bd7671f6289eb35d5c2d4c2dca43d0a3c7a75c13 (diff) | |
| parent | b356e50677e1ae7ba68e27b1b70e59744e129627 (diff) | |
| download | vimium-01dce1cd588adc2306dd4ea02399ac9ba97372df.tar.bz2 | |
Merge branch 'fix-marks-and-add-jump-back-to-previous-position' into global-marks
| -rw-r--r-- | content_scripts/marks.coffee | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content_scripts/marks.coffee b/content_scripts/marks.coffee index 971feadf..fc30849a 100644 --- a/content_scripts/marks.coffee +++ b/content_scripts/marks.coffee @@ -25,6 +25,7 @@ Marks = @mode = new Mode name: "create-mark" indicator: "Create mark..." + exitOnEscape: true suppressAllKeyboardEvents: true keypress: (event) => keyChar = String.fromCharCode event.charCode @@ -52,6 +53,7 @@ Marks = @mode = new Mode name: "goto-mark" indicator: "Go to mark..." + exitOnEscape: true suppressAllKeyboardEvents: true keypress: (event) => @exit => |
