From f2e53a9b5a31658d93d806ebdcdce97dd20dd26b Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Tue, 23 Aug 2011 10:37:02 -0700 Subject: [PATCH] openURL key command --- HTML/atomicity.coffee | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HTML/atomicity.coffee b/HTML/atomicity.coffee index f174cd218..2d2eb5685 100644 --- a/HTML/atomicity.coffee +++ b/HTML/atomicity.coffee @@ -56,6 +56,10 @@ Chrome.bindKey 'open', 'Command-O', (env, args, request) -> filename = file open() +Chrome.bindKey 'openURL', 'Command-Shift-O', (env, args, request) -> + if url = prompt "Enter URL:" + Chrome.openURL url + Chrome.bindKey 'saveAs', 'Command-Shift-S', (env, args, request) -> saveAs()