Skip to content

Commit

Permalink
bug fixed(#12), version updated to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
k2nr committed Oct 14, 2011
1 parent 30a33cf commit 10e4bb5
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion background.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions coffee/background.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ g.bg =
value : history

sendResponse msg
true

reqGetBookmark : (req, sendResponse) ->
chrome.bookmarks.search(req.value, (nodes) -> sendResponse(nodes))
Expand Down
2 changes: 1 addition & 1 deletion coffee/command.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class g.CommandManager
@timerId = setTimeout( callback, ms )

queue : (s) ->
if s.search(/[0-9]/) >= 0 and @a.length == 0
if s.length == 1 and s.search(/[0-9]/) >= 0 and @a.length == 0
@times += s
else
@a += s
Expand Down
2 changes: 1 addition & 1 deletion command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Vichrome",
"version": "0.4.2",
"version": "0.5.0",
"description": "vi like interface for Google Chrome™. For every Google Chrome™ user who hate using a mouse.",
"background_page": "background.html",
"options_page": "options.html",
Expand Down

0 comments on commit 10e4bb5

Please sign in to comment.