zedapp / zed

Rethinking code editing.
http://zedapp.org
MIT License
2.22k stars 162 forks source link

Toggle:Comment shortcut does not work on German keyboard #439

Open daniel-kullmann opened 10 years ago

daniel-kullmann commented 10 years ago

I can call Toggle:Comment fine using Ctrl-., but using the keyboard shortcut (Ctrl-/) does not work.

On a German keyboard, I have to press Ctrl-Shift-7 to get Ctrl-/. Pressing the Ctrl-- ("-" is the key on the German keyboard that has the "/" on an English layout) decreases the font size..

daniel-kullmann commented 10 years ago

I could circumvent this problem by putting the following into my user.json:

keys: {
    "Edit:Toggle Comment": {
        "win": "Ctrl-Shift-7",
        "mac": "Command-/"
    },
},