back in the lucky days when pidgin was still known as gaim, I had the following in my ~/.gtkrc-2.0 and <enter> inserted a newline into my messages and <ctrl>+<enter> sent them.
Code: Select all
gtk-can-change-accels = 1
binding "gaim-bindings"
{
# enter inserts newline
bind "Return" { "insert-at-cursor" ("\n") }
# <ctrl>-enter sends message
bind "<ctrl>Return" { "message-send" () }
}
widget "*gaim_gtkconv_entry" binding "gaim-bindings"Google only brought up dead links.
Does anyone know how I can make <ctrl>+<enter> send messages and <enter> insert newlines again?
Thanks,
Chris
Edit:
Got it. Should have googled a bit more...
According to the example gtkrc-2.0, it has to be
Code: Select all
widget "*pidgin_conv_entry" binding "pidgin-bindings"
