SegundoBob

Ctrl-B to Insert Headline Time

Apr 17th, 2013
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. @language python
  2.  
  3. def insertHdlTime():
  4.     tree = c.frame.tree
  5.     qwidg,lwidg = tree.editLabel(c.p)
  6.     # qwidg is a QLineEdit
  7.     # lwidg is a leoQtHeadlineWidget
  8.  
  9.     idx = qwidg.cursorPosition()
  10.     g.es(idx, color='green')
  11.     hdlBase = p.h
  12.     pre = hdlBase[:idx]
  13.     post = hdlBase[idx:]
  14.     time = c.getTime(body=False)
  15.     p.h = ''.join([pre, time, post])
  16.  
  17. insertHdlTime()
Advertisement
Add Comment
Please, Sign In to add comment