Skip to content

Commit

Permalink
Set FN+V to change Visual Modes by default
Browse files Browse the repository at this point in the history
  • Loading branch information
seerge committed Sep 17, 2024
1 parent 5e51511 commit 6758d92
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/Extra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@ private void SetKeyCombo(ComboBox combo, TextBox txbox, string name)
customActions.Remove("fnlock");
break;
case "fnv":
customActions[""] = EMPTY;
customActions[""] = Properties.Strings.VisualMode;
customActions.Remove("visual");
break;
case "fne":
customActions[""] = "Calculator";
Expand Down
2 changes: 2 additions & 0 deletions app/Input/InputDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,8 @@ public static void KeyProcess(string name = "m3")
action = "micmute";
if (name == "fnc")
action = "fnlock";
if (name == "fnv")
action = "visual";
if (name == "fne")
action = "calculator";
}
Expand Down

0 comments on commit 6758d92

Please sign in to comment.