[Pidgin] #4967: Ctrl+Right should go to begginning of next word, not end of the current

Pidgin trac at pidgin.im
Wed Mar 5 11:47:12 EST 2008


#4967: Ctrl+Right should go to begginning of next word, not end of the current
------------------------------+---------------------------------------------
  Reporter:  GregUzelac       |       Owner:        
      Type:  defect           |      Status:  closed
  Priority:  minor            |   Milestone:        
 Component:  winpidgin (gtk)  |     Version:  2.3.1 
Resolution:  wontfix          |    Keywords:        
   Pending:  0                |  
------------------------------+---------------------------------------------
Comment (by deryni):

 With a little bit of gtkrc binding magic this can be done.
 binding "be-like-windows"
 {
     bind "<ctrl>Right" {
         "move-cursor" (words, 1, 0)
         "move-cursor" (visual-positions, 1, 0)
     }
     bind "<shift><ctrl>Right" {
         "move-cursor" (words, 1, 1)
         "move-cursor" (visual-positions, 1, 1)
     }
 ...
 } widget "*" binding "be-like-windows"

 The first numerical argument is the count, the second is whether to extend
 the selection. You should be able to figure the rest out I hope.

-- 
Ticket URL: <http://developer.pidgin.im/ticket/4967#comment:2>
Pidgin <http://pidgin.im>
Pidgin


More information about the Tracker mailing list