File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ if wezterm.target_triple == 'aarch64-apple-darwin' then
37
37
harfbuzz_features = { ' ss07' , ' calt' , ' liga=0' },
38
38
}
39
39
config .font_size = 12
40
+ config .native_macos_fullscreen_mode = true
40
41
else
41
42
-- disable the window title bar
42
43
config .window_decorations = " NONE"
@@ -68,6 +69,11 @@ config.keys = {
68
69
{ key = " LeftArrow" , mods = " OPT" , action = wezterm .action { SendString = " \x1b b" } },
69
70
-- Make Option-Right equivalent to Alt-f; forward-word
70
71
{ key = " RightArrow" , mods = " OPT" , action = wezterm .action { SendString = " \x1b f" } },
72
+ {
73
+ key = ' f' ,
74
+ mods = ' CMD|CTRL' ,
75
+ action = wezterm .action .ToggleFullScreen ,
76
+ },
71
77
}
72
78
config .mouse_bindings = {
73
79
-- Change the default click behavior so that it only selects
@@ -89,8 +95,6 @@ config.mouse_bindings = {
89
95
mods = ' CMD' ,
90
96
action = act .OpenLinkAtMouseCursor ,
91
97
},
92
- -- NOTE that binding only the 'Up' event can give unexpected behaviors.
93
- -- Read more below on the gotcha of binding an 'Up' event only.
94
98
}
95
99
96
100
-- and finally, return the configuration to wezterm
You can’t perform that action at this time.
0 commit comments