mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
catch cli command "jump"
This commit is contained in:
parent
a8bb45b275
commit
5c0fb8dfd1
1 changed files with 2 additions and 0 deletions
|
@ -79,6 +79,8 @@ public class CLIProcessor {
|
||||||
type = MIRunningEvent.CONTINUE;
|
type = MIRunningEvent.CONTINUE;
|
||||||
} else if (operation.startsWith("sig") && "signal".indexOf(operation) != -1) {
|
} else if (operation.startsWith("sig") && "signal".indexOf(operation) != -1) {
|
||||||
type = MIRunningEvent.CONTINUE;
|
type = MIRunningEvent.CONTINUE;
|
||||||
|
} else if (operation.startsWith("j") && "jump".indexOf(operation) != -1) {
|
||||||
|
type = MIRunningEvent.CONTINUE;
|
||||||
}
|
}
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue