From 82a77bb7dbb2bce6c3bbaf2185c146d6e33ad785 Mon Sep 17 00:00:00 2001 From: Phil Crosby Date: Sun, 17 Jan 2010 23:21:55 -0800 Subject: Rename settings.html to options.html, to match Chrome's nomenclature --- manifest.json | 2 +- options.html | 142 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ settings.html | 142 ---------------------------------------------------------- 3 files changed, 143 insertions(+), 143 deletions(-) create mode 100644 options.html delete mode 100644 settings.html diff --git a/manifest.json b/manifest.json index 6845f4cf..271ded84 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "version": "1.12", "description": "The Hacker's Browser. Vimium provides keyboard shortcuts for navigation and control in the spirit of Vim.", "background_page": "background_page.html", - "options_page": "settings.html", + "options_page": "options.html", "permissions": [ "tabs" ], diff --git a/options.html b/options.html new file mode 100644 index 00000000..23acd20a --- /dev/null +++ b/options.html @@ -0,0 +1,142 @@ + + + Vimium Options + + + + + + +

Vimium - Settings

+ + + + + + + + + + + + + + +
Scroll Step Sizepx(default: 60)
Default zoom level%(default: 100)
+
+ Excluded URLs
+
+
+ e.g. http*://mail.google.com/*
+ This will disable Vimium on Gmail.

+ Enter one URL per line.
+
+
+ +
+
+ + + + +

Command Reference

+
+<c-x> is to be interpreted as ctrl + x together.
+
+Navigating the current page:
+    h       scroll left
+    j       scroll down
+    k       scroll up
+    l       scroll right
+    gg      scroll to top of the page
+    G       scroll to bottom of the page
+    <c-d>   scroll down a page
+    <c-u>   scroll up a page
+    <c-f>   scroll down a full page
+    <c-b>   scroll up a full page
+    f       activate link hints mode to open in current page
+    F       activate link hints mode to open in new tab
+    r       reload
+    gf      view source
+    zi      zoom in
+    zo      zoom out
+    /       enter find mode -- type your search query and hit enter to search or esc to cancel
+    n       cycle forward to the next find match
+    N       cycle backward to the previous find match
+    i       enter insert mode -- all commands will be ignored until you hit esc to exit
+    y       copy the current url to the clipboard
+
+Navigating your history:
+    ba, H         go back in history
+    fw, fo, L     go forward in history
+
+Manipulating tabs:
+    J, gT      go one tab left
+    K, gt      go one tab right
+    t          create tab
+    d          close current tab
+    u          restore closed tab (i.e. unwind the 'd' command)
+
+Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession. ESC
+will clear any partial commands in the queue.
+    
+ + diff --git a/settings.html b/settings.html deleted file mode 100644 index a7d84e3f..00000000 --- a/settings.html +++ /dev/null @@ -1,142 +0,0 @@ - - - Vimium Settings - - - - - - -

Vimium - Settings

- - - - - - - - - - - - - - -
Scroll Step Sizepx(default: 60)
Default zoom level%(default: 100)
-
- Excluded URLs
-
-
- e.g. http*://mail.google.com/*
- This will disable Vimium on Gmail.

- Enter one URL per line.
-
-
- -
-
- - - - -

Command Reference

-
-<c-x> is to be interpreted as ctrl + x together.
-
-Navigating the current page:
-    h       scroll left
-    j       scroll down
-    k       scroll up
-    l       scroll right
-    gg      scroll to top of the page
-    G       scroll to bottom of the page
-    <c-d>   scroll down a page
-    <c-u>   scroll up a page
-    <c-f>   scroll down a full page
-    <c-b>   scroll up a full page
-    f       activate link hints mode to open in current page
-    F       activate link hints mode to open in new tab
-    r       reload
-    gf      view source
-    zi      zoom in
-    zo      zoom out
-    /       enter find mode -- type your search query and hit enter to search or esc to cancel
-    n       cycle forward to the next find match
-    N       cycle backward to the previous find match
-    i       enter insert mode -- all commands will be ignored until you hit esc to exit
-    y       copy the current url to the clipboard
-
-Navigating your history:
-    ba, H         go back in history
-    fw, fo, L     go forward in history
-
-Manipulating tabs:
-    J, gT      go one tab left
-    K, gt      go one tab right
-    t          create tab
-    d          close current tab
-    u          restore closed tab (i.e. unwind the 'd' command)
-
-Vimium supports command repetition so, for example, hitting '5t' will open 5 tabs in rapid succession. ESC
-will clear any partial commands in the queue.
-    
- - -- cgit v1.2.3