* The grepping algorithm in r_cons has been rewritten from scratch - Grepped at memcat() which is the root entrypoint for console IO - Faster than before (200 less LOC) - Not yet working at all, but it is quite better than before * Fix history bug when using @@ * Use return value of filtercmd function to not invoke children core_cmd * Fix some random segfaults
21 lines
715 B
Text
21 lines
715 B
Text
* Add maxrows option for r_print (fix visual problem)
|
|
* Drop #if conditionals to use #ifdef ones
|
|
- fits better with plan9 compiler
|
|
* Add test for config.c with _set_cb
|
|
* Rename __UNIX__ as __POSIX__
|
|
* Strip non input symbols in plugins (speed up loading)
|
|
* Specify binmask in hexpairs
|
|
- wx 1234:ff0f
|
|
- /x 1234:ff0f
|
|
* radare2 -e dbg.engine=vm -d ls
|
|
- resolve path for ls
|
|
- load the program using r_bin in virtual space
|
|
- initialize vm and set regs
|
|
- debug backend should use the vm
|
|
|
|
* Script plugins
|
|
- We should enable r_lib to implement plugins in any
|
|
scripting language, so we can for example prepare
|
|
a .c stub interface for python/perl/ruby/..
|
|
- Maybe having a preprocessor tool for this..
|
|
|