-
-
Notifications
You must be signed in to change notification settings - Fork 363
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert ag
to rzshell
#2916
Merged
Merged
Convert ag
to rzshell
#2916
Changes from 53 commits
Commits
Show all changes
56 commits
Select commit
Hold shift + click to select a range
c2674dc
Convert `ag` commands to the rzshell
XVilka 3646895
fix
imbillow 7510c07
`agw`
imbillow 344f748
x `rz_core_analysis_datarefs`
imbillow 2492860
`rz_core_analysis_datarefs` -> `rz_core_analysis_datarefs`
imbillow 225ef46
unify `rz_core_analysis_callgraph`
imbillow 0ed0cff
fix
imbillow fdb0970
fix
imbillow 06c99ab
fix
imbillow b0863c5
fix
imbillow 75cc632
xxx
imbillow 481404f
fix `agn` `agw`
imbillow 4d68eea
fix
imbillow e455383
rename
imbillow 334b100
fix tests command
imbillow 0eb629f
fix `agd`
imbillow c9a1fdc
fix tests
imbillow 35762e9
fix `agx`
imbillow b337d75
fix json tests
imbillow 1407437
rename
imbillow be7998e
doxygen
imbillow 63c89e5
fix leak
imbillow 63a4a0a
cleanup comments
imbillow 04fcd89
fix
imbillow bc69418
`graph_print` -> `rz_core_graph_print` as a RZ_IPI
imbillow b3daaa7
`choices`
imbillow 2b0ecae
Compatible with previous commands?
imbillow 2c306fe
remove `ag[jJkv?]` aliases
imbillow dee9041
fix `agw`
imbillow dbff561
Update librz/core/cmd/cmd_analysis.c
imbillow 61aac7b
`short_opt`
imbillow 17539a6
add test `aga multiple formats`
imbillow bb5b220
add test `agA multiple formats`
imbillow 2701e09
fix
imbillow 1d262eb
add test `ag[cd] multiple formats` and fix
imbillow ef5cb91
add test `agf multiple formats`
imbillow 4c14081
add test `agr multiple formats`
imbillow 7f57e60
add test `agx multiple formats`
imbillow d6e9a3d
fix
imbillow 2e97a93
fix `agd` color
imbillow f18a408
fix
imbillow 7952a9b
`strcmp`
imbillow 3f8d45e
Apply suggestions from code review
imbillow 0274567
Merge remote-tracking branch 'refs/remotes/origin/asan-fuzz-ag-rzshel…
imbillow 363515e
apply suggestion
imbillow 9760b61
Revert "fix"
imbillow 099e144
fix
imbillow 4f16503
fix
imbillow 45487b6
remove test `ag[df] (dot|gml)`
imbillow 775068d
choices
imbillow 65e4288
Merge branch 'dev' into asan-fuzz-ag-rzshell
imbillow 60b0c71
Revert "remove test `ag[df] (dot|gml)`"
imbillow 46f7e35
`BROKEN=1` for `ag[df]`
imbillow ce83ae3
Merge branch 'dev' into asan-fuzz-ag-rzshell
imbillow fde375c
fix `rz_analysis_diff_fcn`
imbillow dfac67e
fix `rz_analysis_diff_fcn`
imbillow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you want you can use
details_cb: my_cb_function
(look atrz_hash_bang_details_cb
) and for the choices below you can use another callback (withchoices_cb: my_other_cb_function
, seerz_cmd_info_demangle_lang_choices
), so that you don't have to repeat the same values everywhere and you avoid repetition.It is fine as is anyway... Just wanted to share what can be done with rzshell.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But using details_cb here does not seem to have obvious advantages, but requires a lot of handwritten c code.