Skip to content

Commit

Permalink
Update Keybindings.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
nickcat03 committed Jan 25, 2021
1 parent 4acddeb commit 8d06aba
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Keybindings.cs
Expand Up @@ -167,7 +167,17 @@ static ushort readKeybinding (string name)
{ "SUBTRACT", vkConvert (Key.Subtract) },
{ "-", vkConvert (Key.Subtract) },
{ "DIVIDE", vkConvert (Key.Divide) },
{ "/", vkConvert (Key.Divide) }
{ "/", vkConvert (Key.Divide) },
{ "LEFTSHIFT", vkConvert (Key.LeftShift) },
{ "RIGHTSHIFT", vkConvert (Key.RightShift) },
{ "LEFTCTRL", vkConvert (Key.LeftCtrl) },
{ "RIGHTCTRL", vkConvert (Key.RightCtrl) },
{ "LEFTALT", vkConvert (Key.LeftAlt) },
{ "RIGHTALT", vkConvert (Key.RightAlt) },
{ "UP", vkConvert (Key.Up) },
{ "DOWN", vkConvert (Key.Down) },
{ "LEFT", vkConvert (Key.Left) },
{ "RIGHT", vkConvert (Key.Right) }
};
}
}

1 comment on commit 8d06aba

@nickcat03
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

added more keys I find useful

Please sign in to comment.