Add F9 continue key to ESIL (#16756) ##visual

This commit is contained in:
Sylvain Pelissier 2020-05-03 10:52:47 +02:00 committed by GitHub
parent dbd33d0efe
commit d2b1d1359e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -836,7 +836,11 @@ static void visual_breakpoint(RCore *core) {
}
static void visual_continue(RCore *core) {
r_core_cmd (core, "dc", 0);
if (r_config_get_i (core->config, "cfg.debug")) {
r_core_cmd (core, "dc", 0);
} else {
r_core_cmd (core, "aec;.ar*", 0);
}
}
static int visual_nkey(RCore *core, int ch) {