mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-12 15:38:09 +00:00
Handle 'e' in '"'
This commit is contained in:
parent
585ed184b6
commit
655139719b
@ -5653,6 +5653,17 @@ void __create_almighty(RCore *core, RPanel *panel, Sdb *menu_db) {
|
||||
}
|
||||
}
|
||||
switch (key) {
|
||||
case 'e':
|
||||
{
|
||||
__free_modal (&modal);
|
||||
__set_refresh_all (core, false, false);
|
||||
char *cmd = __show_status_input (core, "New command: ");
|
||||
if (R_STR_ISNOTEMPTY (cmd)) {
|
||||
__replace_cmd (core, cmd, cmd);
|
||||
}
|
||||
free (cmd);
|
||||
}
|
||||
break;
|
||||
case 'j':
|
||||
modal->idx++;
|
||||
__update_modal (core, menu_db, modal);
|
||||
|
Loading…
Reference in New Issue
Block a user