Skip to content

Commit

Permalink
Fix issue rohit-px2#134: Send <C-^> instead of <^>
Browse files Browse the repository at this point in the history
  • Loading branch information
vabenil committed Jun 12, 2022
1 parent 568e9cb commit 3473292
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ static std::string convertKey(const QKeyEvent& ev) noexcept
const Qt::KeyboardModifiers modNoShiftMeta = mod
& Qt::KeyboardModifier::ShiftModifier
& ~d_mod();
return key_mod_str(modNoShiftMeta, "^");
return key_mod_str(modNoShiftMeta, "C-^");
}

if (text == "\\")
Expand Down

0 comments on commit 3473292

Please sign in to comment.