Use the wmctrl tools could maximize the windows of gvim in ubuntu. But I find a small issue for that.
Here is the wrong script:
if has("win32")
au GUIEnter * simalt ~x
else
au GUIEnter * call MaximizeWindow()
endif
function! MaximizeWindow()
silent !wmctrl -r :ACTIVE: -b add, maximized_vert,maximized_horz
endfunctionYou could see that between "," and "maximized_vert" on line 8, there is a blank. It's the reason why the script can't works. So I remove the blank and it woks fine. So strange, because this scripts works well on my mac mini.
本文介绍了一个使用wmctrl工具最大化gvim窗口的脚本问题及其解决办法。在Ubuntu环境下,由于脚本中的一处空格错误导致gvim窗口无法正确最大化。通过移除该空格后,问题得以解决。
601

被折叠的 条评论
为什么被折叠?



