blob: e176eebc2557b2cc562c12f9918bd82258bb5b8f (
plain)
1
2
3
4
5
6
7
8
|
import { updateActionCommands } from '../../dom/updateActionCommands'
/**
* position change
* @param {string} pos new position
*/
export const handleSP = (args: string[]) => {
updateActionCommands(args[1]);
}
|