jskinner / DefaultPackages

Old bug tracker for Sublime Text's "Default Packages", e.g. bad syntax highlighting
http://web.archive.org/web/20150524043750/https://www.sublimetext.com/forum/viewtopic.php?f=2&t=12095
26 stars 2 forks source link

Duplicate row in the Default Windows keymap #114

Closed GuilhermeHideki closed 8 years ago

GuilhermeHideki commented 9 years ago

OS: Windows 7 ST: 3(3065 and 3079)

Bug Description:

{ "keys": ["ctrl+keypad_plus"], "command": "increase_font_size" },
FichteFoll commented 9 years ago

keypad_plus and + are different keys. I don't know about equals and = though.

GuilhermeHideki commented 9 years ago

yes, but I think the person who was writing the keys didn't erase those that were common to both keypad and the number row.

    { "keys": ["ctrl++"], "command": "increase_font_size" },
    { "keys": ["ctrl+="], "command": "increase_font_size" },
    { "keys": ["ctrl+keypad_plus"], "command": "increase_font_size" },
    { "keys": ["ctrl+-"], "command": "decrease_font_size" },
    { "keys": ["ctrl+keypad_minus"], "command": "decrease_font_size" },

    { "keys": ["ctrl+equals"], "command": "increase_font_size" },
    { "keys": ["ctrl+shift+equals"], "command": "decrease_font_size" },
    { "keys": ["ctrl+keypad_plus"], "command": "increase_font_size" },
    { "keys": ["ctrl+shift+keypad_plus"], "command": "decrease_font_size" },
FichteFoll commented 9 years ago

Whops, I'm blind

wbond commented 8 years ago

This should be fixed in dev build 3112

GuilhermeHideki commented 8 years ago

thanks!