diff --git a/src/keymap.coffee b/src/keymap.coffee index 37992d0e0..ccb521506 100644 --- a/src/keymap.coffee +++ b/src/keymap.coffee @@ -195,13 +195,3 @@ class Keymap when 32 then 'space' when 127 then 'delete' else String.fromCharCode(charCode) - - # - # Deprecated - # - - bindingsForElement: (element) -> - keystrokeMap = {} - mappings = @mappingsMatchingElement(@allMappings(), element) - keystrokeMap[keystroke] ?= command for {command, keystroke} in mappings - keystrokeMap