alacritty / alacritty/alacritty
ToggleFullscreen does not work.
- 主要言語
- Rust
- スター
- 65.7k
- フォーク
- 3.6k
- 平均マージ
- 3時間 5分
- マージ済み PR(30日)
- 3
説明
Alacritty 0.15.1 via Deb 13 repo.
Regardless of keybinding, ToggleFullscreen does not work.
I've confirmed; I do not have a competing system-level keybind.
Unless I'm doing something grossly wrong in my config ...
While it's not a direct duplicate of [#6647](#6647), it does seem similar.
```
# vim: filetype=toml tabstop=2 shiftwidth=2 textwidth=78 nowrap expandtab smartindent
[window]
dimensions = { columns = 320, lines = 80 }
padding = { x = 1, y = 1 }
opacity = 1.0
blur = true
decorations = "None"
startup_mode = "Fullscreen"
dynamic_title = true
[font]
normal = { family = "CodeNewRoman Nerd Font Mono", style = "Regular" }
bold = { family = "CodeNewRoman Nerd Font Mono", style = "bold" }
italic = { family = "CodeNewRoman Nerd Font Mono", style = "italic" }
bold_italic = { family = "CodeNewRoman Nerd Font Mono", style = "bold italic" }
size = 8.0
[colors.primary]
foreground = "#ffcd5c" # Wyse orange
background = "#000000" # Black
[colors.normal]
black = "#000000"
red = "#ff3b30"
green = "#4cd964"
yellow = "#ffcc00"
blue = "#007aff"
magenta = "#ff2d55"
cyan = "#5ac8fa"
white = "#ffffff"
[colors.bright]
black = "#686868"
red = "#ff3b30"
green = "#4cd964"
yellow = "#ffcc00"
blue = "#007aff"
magenta = "#ff2d55"
cyan = "#5ac8fa"
white = "#ffffff"
[bell]
animation = "EaseOutQuint"
duration = 250
color = "#8e3a59"
[selection]
save_to_clipboard = true
semantic_escape_chars = ",│`|:\"' ()[]{}<>\t"
[cursor]
style = { shape = "Block", blinking = "On" }
blink_interval = 750
blink_timeout = 0
[terminal]
shell = { program = "/usr/bin/bash", args = ["-l"] }
osc52 = "CopyPaste"
[keyboard]
bindings = [
# Copy (Ctrl + C)
{ key = "C", mods = "Control", action = "Copy" },
# Paste (Control + V)
{ key = "V", mods = "Control", action = "Paste" },
# Find (Control + F)
{ key = "F", mods = "Control", action = "SearchForward" },
# New Window (Control + N)
{ key = "N", mods = "Control", action = "CreateNewWindow" },
# Decrease Font Size (Control + -)
{ key = "Minus", mods = "Control", action = "DecreaseFontSize" },
# Increase Font Size (Control + =)
{ key = "Equals", mods = "Control", action = "IncreaseFontSize" },
# Reset Font Size (Control + 0)
{ key = "Key0", mods = "Control", action = "ResetFontSize" },
# Toggle Full Screen (Control + Enter)
{ key = "F11", action = "ToggleFullscreen" },
]
```
コントリビューションガイド
評価
この issue はまだ評価されていません。