A minimal email TUI where you read with Markdown and write in Neovim. neomd.ssp.sh/docs
email markdown neovim tui
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

read indiation

sspaeti ebb1e3ad ae3b61e6

+6
+6
internal/ui/inbox.go
··· 41 41 const ( 42 42 colNumWidth = 4 // " 1 " 43 43 colFlagWidth = 2 // "N " or " " 44 + colReplyWidth = 1 // "↩" or " " 44 45 colThreadWidth = 2 // "│ " or "╰ " or " " 45 46 colDateWidth = 7 // "Feb 03 " 46 47 colAttachWidth = 2 // "@ " or " " ··· 72 73 flag = "* " 73 74 case unread: 74 75 flag = "N " 76 + } 77 + // Reply indicator 78 + replyStr := " " 79 + if e.email.Answered { 80 + replyStr = "·" 75 81 } 76 82 // Thread connector column 77 83 threadStr := " "