diff -crB thunar/thunar-path-entry.c thunar-withgolocationkeyboardshortcut/thunar-path-entry.c *** thunar/thunar-path-entry.c 2009-09-30 10:23:34.000000000 +1000 --- thunar-withgolocationkeyboardshortcut/thunar-path-entry.c 2009-10-02 00:51:57.000000000 +1000 *************** *** 696,701 **** --- 696,708 ---- /* we handled the event */ return TRUE; } + else if((event->keyval == GDK_g) && ((event->state & GDK_CONTROL_MASK) != 0)) + { + /*Ctrl-g is the same as pressing Enter in the location bar*/ + gtk_widget_activate(widget); + + return TRUE; + } return FALSE; }