Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement Undo & Redo keyboard shortcuts #382

Merged
merged 8 commits into from
Jul 30, 2024
10 changes: 10 additions & 0 deletions packages/base/src/keybindings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
[
{
"command": "jupytercad:undo",
"keys": ["Accel Z"],
"selector": ".jp-jupytercad-panel"
martinRenou marked this conversation as resolved.
Show resolved Hide resolved
},
{
"command": "jupytercad:redo",
"keys": ["Accel Y"],
"selector": ".jp-jupytercad-panel"
arjxn-py marked this conversation as resolved.
Show resolved Hide resolved
arjxn-py marked this conversation as resolved.
Show resolved Hide resolved
},
{
"command": "jupytercad:removeObject",
"keys": ["Delete"],
Expand Down
Loading