Created
May 31, 2021 00:24
-
-
Save flatcap/393f6e222f29209026fd048dec1dfb41 to your computer and use it in GitHub Desktop.
notmuch functions that use the progress bar
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 callgraph { | |
| 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" | |
| ] | |
| node [ color="#ff0000" ] | |
| append_message | |
| nm_mbox_check | |
| nm_mbox_open | |
| nm_read_entire_thread | |
| { rank=same nm_mbox_check nm_mbox_open nm_read_entire_thread } | |
| node [ color="#000000" ] | |
| append_replies -> append_message | |
| append_thread -> append_message | |
| append_thread -> append_replies | |
| nm_mbox_check -> append_message | |
| nm_mbox_open -> read_mesgs_query | |
| nm_mbox_open -> read_threads_query | |
| nm_read_entire_thread -> read_threads_query | |
| read_mesgs_query -> append_message | |
| read_threads_query -> append_thread | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment