nmsmith22389 / vscode-incrementor

Advanced increment / decrement actions for (almost) anything.
13 stars 10 forks source link

Any suggestions for mac keybindings? #2

Closed sahil6111 closed 6 years ago

nmsmith22389 commented 7 years ago

I use... ctrl+up/down => 1 ctrl+opt+up/down => 0.1 ctrl+opt+cmd+up/down => 10

odebroqueville commented 2 years ago

Would someone please explain how to set up the key bindings below:

{
    "command": "incrementor.incrementByOne",
    "key": "ctrl+up"
},
{
    "command": "incrementor.decrementByOne",
    "key": "ctrl+down"
},
{
    "command": "incrementor.incrementByTenth",
    "key": "ctrl+alt+up"
},
{
    "command": "incrementor.decrementByTenth",
    "key": "ctrl+alt+down"
},
{
    "command": "incrementor.incrementByTen",
    "key": "ctrl+shift+up"
},
{
    "command": "incrementor.decrementByTen",
    "key": "ctrl+shift+down"
}

Where should I paste the above?