Skip to content

Commit

Permalink
- Closes ticket #52, adds Ctrl+a/e begin/end to gui
Browse files Browse the repository at this point in the history
  • Loading branch information
rbreaves committed Mar 7, 2020
1 parent df9b8d9 commit 1d59d8d
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions .xkb/symbols/mac_gui
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,66 @@ default partial xkb_symbols "mac_levelssym" {
// };
// Maximize Window Ctrl + Cmd + F = Alt+F10
// Also maps Option + Cmd + F to Control+H for Replace - Sublime
// AD03=e,E
// AC01=a,A
// Ctrl + E - End of Line
replace key <AC01> {
type[Group1]= "ONE_LEVEL_CTRL",
symbols[Group1]= [
// Base
a,
// Shift
A,
// Alt
a,
// Shift Alt
A,
// Super
NoSymbol,
// Shift Super
NoSymbol

],
actions[Group1]= [
NoAction(),
NoAction(),
NoAction(),
NoAction(),
NoAction(),
NoAction(),
RedirectKey(key=<HOME>,clearmods=Super),
RedirectKey(key=<HOME>,clearmods=Super)
]
};
// Ctrl + E - End of Line
replace key <AD03> {
type[Group1]= "ONE_LEVEL_CTRL",
symbols[Group1]= [
// Base
e,
// Shift
E,
// Alt
e,
// Shift Alt
E,
// Super
NoSymbol,
// Shift Super
NoSymbol

],
actions[Group1]= [
NoAction(),
NoAction(),
NoAction(),
NoAction(),
NoAction(),
NoAction(),
RedirectKey(key=<END>,clearmods=Super),
RedirectKey(key=<END>,clearmods=Super)
]
};
replace key <AC04> {
type[Group1]= "ONE_LEVEL_CTRL",
symbols[Group1]= [
Expand Down

0 comments on commit 1d59d8d

Please sign in to comment.