Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Commit 3163d31

Browse files
staticoclaude
andcommitted
Change hardware lookup key from 'g' to 'l' in nodes view
Avoids conflict with vim-style 'g' for go-to-first navigation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 5f7e8e6 commit 3163d31

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ui/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ export function App({ address, packetStore, nodeStore, skipConfig = false }: App
619619
if (input === "d" && nodes[selectedNodeIndex]) {
620620
sendTraceroute(nodes[selectedNodeIndex].num, 0);
621621
}
622-
if (input === "g" && nodes[selectedNodeIndex]?.hwModel) {
622+
if (input === "l" && nodes[selectedNodeIndex]?.hwModel) {
623623
const hwName = Mesh.HardwareModel[nodes[selectedNodeIndex].hwModel!];
624624
if (hwName) {
625625
const query = encodeURIComponent(`Meshtastic ${hwName}`);

0 commit comments

Comments
 (0)