diff options
author | Doug Kearns <dougkearns@gmail.com> | 2009-06-27 01:05:47 +1000 |
---|---|---|
committer | Doug Kearns <dougkearns@gmail.com> | 2009-06-28 16:03:21 +1000 |
commit | 6f2eb2d1efdb5ab30eef111846410f5e6fef2ef9 (patch) | |
tree | 5be44e881c4235cd23c9c010246c7f75f8953161 /vimperator/content/config.js | |
parent | 4afccff5e94466fab7e7e0405aa74a24a0d70421 (diff) | |
download | pentadactyl-6f2eb2d1efdb5ab30eef111846410f5e6fef2ef9.tar.gz |
Split Map.flags into individual properties of Map.
Diffstat (limited to 'vimperator/content/config.js')
-rw-r--r-- | vimperator/content/config.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vimperator/content/config.js b/vimperator/content/config.js index 9213d508..18d3ab8d 100644 --- a/vimperator/content/config.js +++ b/vimperator/content/config.js @@ -233,12 +233,12 @@ const config = { //{{{ mappings.add([modes.NORMAL], ["<C-a>"], "Increment last number in URL", function (count) { incrementURL(Math.max(count, 1)); }, - { flags: Mappings.flags.COUNT }); + { count: true }); mappings.add([modes.NORMAL], ["<C-x>"], "Decrement last number in URL", function (count) { incrementURL(-Math.max(count, 1)); }, - { flags: Mappings.flags.COUNT }); + { count: true }); mappings.add([modes.NORMAL], ["~"], "Open home directory", @@ -294,7 +294,7 @@ const config = { //{{{ else liberator.open(url); }, - { flags: Mappings.flags.COUNT }); + { count: true }); mappings.add([modes.NORMAL], ["gU"], "Go to the root of the website", |