An arguments object for the keyBindingChanged signal.

interface IKeyBindingChangedArgs {
    binding: IKeyBinding;
    type: "removed" | "added";
}

Properties

Properties

binding: IKeyBinding

The key binding which was changed.

type: "removed" | "added"

Whether the key binding was added or removed.