Add backspace as an alias for q in Vb

This commit is contained in:
pancake 2018-05-28 23:44:51 +02:00 committed by radare
parent 7c2d84594c
commit e7fe4d5916

View File

@ -1645,6 +1645,7 @@ R_API void r_core_visual_browse(RCore *core) {
case '_':
r_core_visual_hudstuff (core);
break;
case 127: // backspace
case 'q':
return;
}