Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"Unable to create Ubuntu Menu Proxy" using GVim in Ubuntu [closed]

Tags:

vim

ubuntu

I am getting this error in the terminal window when trying

$ gvim
** (gvim:2350): WARNING **: Unable to create Ubuntu Menu Proxy: Timeout was reached

gvim launches but then this error occurs. Any help is greatly appreciated.

like image 356
user1684570 Avatar asked Sep 22 '12 02:09

user1684570


1 Answers

The reason you are getting is because Gvim doesn't have an appmenu in Ubuntu by default. You can fix this by adding a global menu for Gvim.

Running the command UBUNTU_MENUPROXY= gvim instead of gvim will help you get rid of that warning. You can also consider aliasing gvim to the above command.

For more information, see How to get global application menu for gvim?

like image 136
jokerdino Avatar answered Dec 28 '22 23:12

jokerdino