emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [O] Org table with long lines visibility


From: Michael Brand
Subject: Re: [O] Org table with long lines visibility
Date: Thu, 5 May 2011 07:53:01 +0200

Hi Juan

You might want to try out also "C-u C-c `" or to toggle "M-x
visible-mode RET". More comfortable would be to reuse this part from
org-table-edit-field

#+begin_src emacs-lisp
(let ((b (save-excursion (skip-chars-backward "^|") (point)))
            (e (save-excursion (skip-chars-forward "^|\r\n") (point))))
        (remove-text-properties b e '(org-cwidth t invisible t
                                                 display t intangible t))
        (if (and (boundp 'font-lock-mode) font-lock-mode)
            (font-lock-fontify-block)))
#+end_src

that shows the whole content of the current cell until the next
"org-table-align" from e. g. TAB. It should be relatively easy to
combine this with "org-table-next-field" and parts of it for other
moving directions and to assign that to keys for moving around.

Michael

On Wed, May 4, 2011 at 22:45, Johnny <address@hidden> wrote:
> Juan Pechiar <address@hidden> writes:
>> If you're running Emacs on a graphic environment, there is a mouse
>> tooltip showing the whole cell contentes when you hover over a
>> truncated cell.
>
> Thanks, but I don't like using the mouse as it is too inefficient when
> moving in buffers. Is there any way not involving the mouse?



reply via email to

[Prev in Thread] Current Thread [Next in Thread]