From 2ddcfb60cf1d7fe941f746611454a58ac7cb5c71 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 22 Oct 2013 12:02:17 -0700 Subject: [PATCH] Allow `f2` and `tab` keybindings This is possible now that we're on atom-shell@0.6.4 --- src/menu-manager.coffee | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/menu-manager.coffee b/src/menu-manager.coffee index c7b76f9db..76d171c60 100644 --- a/src/menu-manager.coffee +++ b/src/menu-manager.coffee @@ -61,10 +61,6 @@ class MenuManager for binding in bindings continue if binding.indexOf(' ') != -1 - # To be fixed in atom-shell - continue if binding.indexOf('f2') != -1 - continue if binding.indexOf('tab') != -1 - filtered[key] ?= [] filtered[key].push(binding) filtered