Mercurial > google_bookmarks_incsearch
changeset 6:ac5648afee47 default tip
change hot key from ctrl to alt.
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Sat, 23 May 2009 11:56:41 +0900 |
parents | 8f7e53bfe0e8 |
children | |
files | chrome/content/incsearch.js chrome/content/init.js chrome/content/view.html |
diffstat | 3 files changed, 11 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/chrome/content/incsearch.js Sat May 23 11:56:02 2009 +0900 +++ b/chrome/content/incsearch.js Sat May 23 11:56:41 2009 +0900 @@ -382,7 +382,7 @@ }, hotkey: function(event) { - if (event.ctrlKey) { + if (event.altKey) { switch(event.keyCode) { case 13: // Enter case 77: // m (Enter Max OS X)
--- a/chrome/content/init.js Sat May 23 11:56:02 2009 +0900 +++ b/chrome/content/init.js Sat May 23 11:56:41 2009 +0900 @@ -176,7 +176,7 @@ document.addEventListener( 'keydown', function(event) { - if (event.ctrlKey) { + if (event.altKey) { switch(event.keyCode) { case 85: // u (Sync) hideMsgBox();
--- a/chrome/content/view.html Sat May 23 11:56:02 2009 +0900 +++ b/chrome/content/view.html Sat May 23 11:56:41 2009 +0900 @@ -60,39 +60,39 @@ <p>Shortcut Keys</p> <table> <tr> - <th>[Ctrl]+[Right]</th> + <th>[Alt]+[Right]</th> <td>Next page</td> </tr> <tr> - <th>[Ctrl]+[Left]</th> + <th>[Alt]+[Left]</th> <td>Previous page</td> </tr> <tr> - <th>[Ctrl]+[Down]</th> + <th>[Alt]+[Down]</th> <td>Next bookmark</td> </tr> <tr> - <th>[Ctrl]+[Up]</th> + <th>[Alt]+[Up]</th> <td>Previous bookmark</td> </tr> <tr> - <th>[Ctrl]+[Enter] or [Ctrl]+[m]</th> + <th>[Alt]+[Enter] or [Alt]+[m]</th> <td>Open bookmark</td> </tr> <tr> - <th>[Ctrl]+[e]</th> + <th>[Alt]+[e]</th> <td>Edit bookmark</td> </tr> <tr> - <th>[Ctrl]+[u]</th> + <th>[Alt]+[u]</th> <td>Load bookmarks from Google Bookmarks (sync bookmarks)</td> </tr> <tr> - <th>[Ctrl]+[s]</th> + <th>[Alt]+[s]</th> <td>Open(Close) setting window</td> </tr> <tr> - <th>[Ctrl]+[/]</th> + <th>[Alt]+[/]</th> <td>Show(Close) help (this page)</td> </tr> </table>