summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schlachter <t480-debian-git@schlachter.ca>2026-01-11 13:41:43 -0500
committerDavid Schlachter <t480-debian-git@schlachter.ca>2026-01-11 13:41:43 -0500
commitcf0c29b79fe9d2feaa6ff48445ce43dff7b9b15b (patch)
treeeac9edf378b720b7c7a77e327c6dd1a33ef9ee24
parent32acf8c4940b5e7088b0651d5e7ea480afee9e7b (diff)
Exit on Control-D as well as Control-C
-rw-r--r--README.md1
-rw-r--r--ui.go2
2 files changed, 1 insertions, 2 deletions
diff --git a/README.md b/README.md
index a99ecc4..283a25f 100644
--- a/README.md
+++ b/README.md
@@ -86,7 +86,6 @@ Usage of french-wiktionary-flashcards:
- Include context hints (e.g. see entry for 'panais', which has "Agriculture",
"Par métonomie", etc) in definitions; and maybe the "singular and plural" box
as well
-- Control-D should exit too
- allow setting the language for initial processing, so that we could support
languages other than French
- general code cleanup & organization
diff --git a/ui.go b/ui.go
index c41d6f2..bbffb5c 100644
--- a/ui.go
+++ b/ui.go
@@ -138,7 +138,7 @@ func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) {
m.vp.SetContent(formatDefinitionForDisplay(m.p, m.currentDefinition, m.vp.Width))
case tea.KeyMsg:
switch msg.Type {
- case tea.KeyCtrlC:
+ case tea.KeyCtrlC, tea.KeyCtrlD:
return m, tea.Quit
case tea.KeyEsc:
m.currentWord = ""