tangled
alpha
login
or
join now
phaz.uk
/
VRChat-Macros
this repo has no description
0
fork
atom
overview
issues
pulls
pipelines
add placeholders for undo / redo
phaz.uk
1 month ago
6f864cfb
d26aecbc
verified
This commit was signed with the committer's
known signature
.
phaz.uk
SSH Key Fingerprint:
SHA256:zxJQhKgYCHHuwxrAXidvE/hMnTWnFw5vch6xe716hh8=
options
unified
split
Changed files
+10
src
keybinds.ts
+10
src/keybinds.ts
···
70
70
setSelectedNode(nodes);
71
71
}
72
72
break;
73
73
+
case 'z':
74
74
+
if(e.ctrlKey){
75
75
+
console.log('undo');
76
76
+
}
77
77
+
break;
78
78
+
case 'y':
79
79
+
if(e.ctrlKey){
80
80
+
console.log('redo');
81
81
+
}
82
82
+
break;
73
83
}
74
84
}
75
85