Decreased font size step
This commit is contained in:
parent
bc86247fb6
commit
c53497106c
|
@ -31,13 +31,13 @@ in {
|
|||
};
|
||||
keybindings = lib.mkMerge [
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isDarwin {
|
||||
"cmd+=" = "change_font_size current +2.0";
|
||||
"cmd+minus" = "change_font_size current -2.0";
|
||||
"cmd+=" = "change_font_size current +1.0";
|
||||
"cmd+minus" = "change_font_size current -1.0";
|
||||
"cmd+0" = "change_font_size current 0";
|
||||
})
|
||||
(lib.mkIf pkgs.stdenv.hostPlatform.isLinux {
|
||||
"ctrl+=" = "change_font_size current +2.0";
|
||||
"ctrl+minus" = "change_font_size current -2.0";
|
||||
"ctrl+=" = "change_font_size current +1.0";
|
||||
"ctrl+minus" = "change_font_size current -1.0";
|
||||
"ctrl+0" = "change_font_size current 0";
|
||||
})
|
||||
];
|
||||
|
|
Loading…
Reference in a new issue