From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Brand Subject: Re: Org table with long lines visibility Date: Thu, 5 May 2011 07:53:01 +0200 Message-ID: References: <87hb9axson.fsf@gmx.co.uk> <20110504180751.GC4334@soloJazz.com> <87r58ew5xs.fsf@gmx.co.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:34483) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHrUm-0005YV-GJ for emacs-orgmode@gnu.org; Thu, 05 May 2011 01:53:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QHrUl-0005TV-EP for emacs-orgmode@gnu.org; Thu, 05 May 2011 01:53:04 -0400 Received: from mail-ew0-f41.google.com ([209.85.215.41]:44044) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QHrUl-0005TR-9z for emacs-orgmode@gnu.org; Thu, 05 May 2011 01:53:03 -0400 Received: by ewy9 with SMTP id 9so621542ewy.0 for ; Wed, 04 May 2011 22:53:02 -0700 (PDT) In-Reply-To: <87r58ew5xs.fsf@gmx.co.uk> List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Johnny Cc: Juan Pechiar , emacs-orgmode@gnu.org 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 wrote: > Juan Pechiar 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?