Ubuntu – Gvim GLib-GObject-WARNING in ubuntu 13.10

glibgvimvim

I upgraded from ubuntu 13.04 to ubuntu 13.10 this afternoon. And when I try starting vim form the terminal after the upgrade, I get these warnings

(gvim:4054): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::sm-connect after class was initialised

(gvim:4054): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::show-crash-dialog after class was initialised

(gvim:4054): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::display after class was initialised

(gvim:4054): GLib-GObject-WARNING **: Attempt to add property GnomeProgram::default-icon after class was initialised`

How can I fix these and what exectly are these warnings about

Best Answer

I was seeing this in 14.04. But I only had vim-gnome installed. Removing vim-gnome and installing vim-gtk works without any error messages.

sudo apt-get -y remove vim-gnome
sudo apt-get install vim-gtk
Related Question