gVim 7.3 in fullscreen mode
fullscreen, vim
Solution
I guess you mean `~/.vimrc` or `~/.gvimrc` by "startup settings". When that is executed, the GUI isn't initialized yet. Try delaying the execution with an autocmd:
:autocmd GUIEnter * call libcallnr("gvimfullscreen.dll", "ToggleFullScreen", 0)
Problem
I'm using the script to open gVim in fullscreen downloaded from here: http://www.vim.org/scripts/script.php?script_id=2596. I've also added this line to the startup settings: ``` :call libcallnr("gvimfullscreen.dll", "ToggleFullScreen", 0) ``` When running gVim with this setting, I get the following error: ``` Error detected while processing _virmc: E364: Library call failed for "ToggleFullScreen()" ``` Is there anything else I need to do with the files from that script? If I need to compile it somehow, would like someone to guide me through that process as I'm fairly new to Vim. Thanks! Edit: I'm running Windows 7