On Tuesday, September 12 2000 18:43:01, stanislav shalunov wrote:
[...]
> What do you mean?  What buttons do you press?
t runs `bbdb-elide-record' maybe we are not talking about
the same thing ... 

> > > Or what?  Or do you scroll?  Is there an easy way to scroll?
> > Have you tried "n" and "p"?
> 
> I can scroll fine once I'm in the window.  But pressing the additional
> C-x o C-x o next C-x o (that's 10 keys!) each time I read a message is
> definitely tiresome.
Write a function/macro for this and bind it to a key ...
but I well you might also change the function
bbdb-format-record as indicated by the diff below,
which might do what you desire.

Cheers Robert

diff -c -r1.116 bbdb.el
*** bbdb.el     2000/09/08 15:10:03     1.116
--- bbdb.el     2000/09/12 17:11:08
***************
*** 1132,1138 ****
                   (notes (bbdb-record-raw-notes record)))
               (if (or phone net notes)
                   (progn (indent-to 48)
!                         (insert (if notes ". " "  "))))
               (cond (phone (insert (bbdb-phone-string phone))
                            (indent-to 70)
                            (insert " ("); don't ask, it compiles better
--- 1132,1140 ----
                   (notes (bbdb-record-raw-notes record)))
               (if (or phone net notes)
                   (progn (indent-to 48)
!                       (if (and notes (bbdb-record-notes record))
!                           (insert "  " (bbdb-record-notes record) "  "))
!                       (insert "  ")))
               (cond (phone (insert (bbdb-phone-string phone))
                            (indent-to 70)
                            (insert " ("); don't ask, it compiles better

_______________________________________________
bbdb-info mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/mailman/listinfo/bbdb-info

Reply via email to