Skip to content

Commit

Permalink
Merge pull request #108 from ggozad/fix/command-palette-shortcut
Browse files Browse the repository at this point in the history
Restore shortcut for command palette.
  • Loading branch information
ggozad authored Aug 30, 2024
2 parents aca8e9b + 45d0287 commit 92489b3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

0.4.4 - 2024-08-30
------------------

- Restore shortcut for command palette that overrided our choice for adding images.
[ggozad]

0.4.3 - 2024-08-28
------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "oterm"
version = "0.4.3"
version = "0.4.4"
description = "A text-based terminal client for Ollama."
authors = [{ name = "Yiorgis Gozadinos", email = "[email protected]" }]
license = { text = "MIT" }
Expand Down
1 change: 1 addition & 0 deletions src/oterm/app/oterm.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class OTerm(App):
("ctrl+t", "toggle_dark", "toggle theme"),
("ctrl+q", "quit", "quit"),
]
COMMAND_PALETTE_BINDING = "ctrl+backslash"

def action_toggle_dark(self) -> None:
self.dark = not self.dark
Expand Down

0 comments on commit 92489b3

Please sign in to comment.