在iTerm2中,没有直接的命令可以使窗口最大化。但是,您可以使用AppleScript或者一些键盘快捷键来实现最大化。使用AppleScript的方法如下:
添加 Integration
打开一个iTerm2窗口。使用快捷键 ⌘+ 打开一个新的标签页。 在顶部菜单栏选择 “iTerm2” > “Install Shell Integration”,然后重启iTerm2。
添加一个自定义脚本
在你的 ~/.bash_profile 或 ~/.zshrc 文件中添加以下AppleScript命令:
function max() {
osascript -e 'tell application "iTerm2" to set bounds of front window to {0, 0, 1920, 1080}'
}
这里的坐标 {0, 0, 1920, 1080} 需要替换为您屏幕的分辨率。使用 source ~/.bash_profile 或 source ~/.zshrc 来使改动生效。在终端中输入 max 并回车,当前的iTerm2窗口将会最大化。