We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93abe6e commit cf31dafCopy full SHA for cf31daf
killpy/__main__.py
@@ -93,8 +93,8 @@ class TableApp(App):
93
BINDINGS = [
94
Binding(key="ctrl+q", action="quit", description="Quit the app"),
95
Binding(
96
- key="ctrl+m",
97
- action="enter",
+ key="space",
+ action="Delete",
98
description="Delete the .venv selected",
99
show=True,
100
),
@@ -143,7 +143,7 @@ def on_mount(self) -> None:
143
self.query_one(Label).update(f"Found {len(venvs)} .venv directories")
144
145
def on_key(self, event):
146
- if event.key == "enter":
+ if event.key == "space":
147
table = self.query_one(DataTable)
148
cursor_cell = table.cursor_coordinate
149
if cursor_cell:
0 commit comments