angular-hotkeys icon indicating copy to clipboard operation
angular-hotkeys copied to clipboard

Shift++ (combo with key '+')

Open bennyjonsson opened this issue 9 years ago • 3 comments

Can't set key '+' as combo key hotkeys.add({ combo: 'alt++', // key +

bennyjonsson avatar Aug 16 '16 13:08 bennyjonsson

Me too, can't get 'mod+plus' or 'mod+shift+=' (as described in https://github.com/ccampbell/mousetrap/issues/243) to work either.

tomsoderlund avatar Sep 21 '16 13:09 tomsoderlund

it workes for me using Ctrl ++ , (the + in the num lock panel only ) hotkeys.add({ combo: 'ctrl++', description: 'Zoom IN ', callback: function(event, hotkey) { event.preventDefault(); $scope.zoomin(); } }); // zoom out hotkeys.add({ combo: 'ctrl+-', description: 'Zoom Out', callback: function(event, hotkey) { event.preventDefault(); $scope.zoomout(); } });

eassa avatar Sep 23 '16 09:09 eassa

Yeah I only have a laptop keyboard and it doesn't work there. Seems to be differences between numeric keyboard and regular - saw this in the Mousetrap discussions too.

tomsoderlund avatar Sep 24 '16 10:09 tomsoderlund