Last active
March 5, 2021 13:24
-
-
Save flatcap/3f5f474c1bff666bfd54d7fed3702766 to your computer and use it in GitHub Desktop.
neomutt pager deps
This file contains hidden or 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
| digraph display_line | |
| { | |
| graph [ | |
| rankdir="LR" | |
| nodesep="0.2" | |
| ranksep="0.5" | |
| compound="true" | |
| ] | |
| node [ | |
| shape="Mrecord" | |
| fontsize="12" | |
| fillcolor="#ffffff" | |
| style="filled" | |
| height="0.2" | |
| penwidth="1.5" | |
| color="black" | |
| ] | |
| edge [ | |
| penwidth="1.0" | |
| arrowsize="0.5" | |
| ] | |
| // Deps: None | |
| node [ color="#d0d0d0" fontcolor="#b0b0b0" ] | |
| comp_syntax_t | |
| check_marker | |
| is_ansi | |
| check_sig | |
| mutt_buffer_strip_formatting | |
| append_line | |
| node [ fontcolor="#000000" ] | |
| // Deps: Global var | |
| node [ color="#ff0000" ] | |
| check_attachment_marker | |
| check_protected_header_marker | |
| // Deps: Config | |
| node [ color="#ff00ff" ] | |
| mutt_is_quote_line | |
| format_line | |
| // Deps: Colors | |
| node [ color="#0000ff" ] | |
| classify_quote | |
| class_color_new | |
| display_line // and Config | |
| grok_ansi | |
| resolve_color // and Config | |
| resolve_types | |
| shift_class_colors | |
| // Deps: External file | |
| node [ color="#00ffff" ] | |
| fill_buffer | |
| node [ color="#000000" ] | |
| check_attachment_marker -> check_marker | |
| check_protected_header_marker -> check_marker | |
| classify_quote -> class_color_new | |
| classify_quote -> shift_class_colors | |
| display_line -> append_line | |
| display_line -> classify_quote | |
| display_line -> fill_buffer | |
| display_line -> format_line | |
| display_line -> resolve_color | |
| display_line -> resolve_types | |
| fill_buffer -> mutt_buffer_strip_formatting | |
| format_line -> check_attachment_marker | |
| format_line -> check_protected_header_marker | |
| format_line -> grok_ansi | |
| format_line -> is_ansi | |
| format_line -> resolve_color | |
| mutt_buffer_strip_formatting -> check_attachment_marker | |
| mutt_buffer_strip_formatting -> check_protected_header_marker | |
| mutt_buffer_strip_formatting -> is_ansi | |
| resolve_color -> comp_syntax_t | |
| resolve_types -> check_attachment_marker | |
| resolve_types -> check_protected_header_marker | |
| resolve_types -> check_sig | |
| resolve_types -> classify_quote | |
| resolve_types -> mutt_is_quote_line | |
| } |
This file contains hidden or 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
| Key: | |
| Red: global variables | |
| Purple: config use | |
| Blue: uses Colors | |
| Light-blue: reads from file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment