From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Shrinking columns after formula recalculation Date: Wed, 10 Apr 2019 14:53:36 -0400 Message-ID: <87bm1dbsjz.fsf@alphaville.usersys.redhat.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:44371) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hEILz-00071P-Hw for emacs-orgmode@gnu.org; Wed, 10 Apr 2019 14:53:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hEILy-0001bb-DL for emacs-orgmode@gnu.org; Wed, 10 Apr 2019 14:53:47 -0400 Received: from [195.159.176.226] (port=43590 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hEILy-0001YP-3V for emacs-orgmode@gnu.org; Wed, 10 Apr 2019 14:53:46 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hEILv-000hJJ-CM for emacs-orgmode@gnu.org; Wed, 10 Apr 2019 20:53:43 +0200 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" To: emacs-orgmode@gnu.org I have a table with column width cookies. I shrink the columns with C-u C-c TAB and then I recalculate with C-c C-c on the #TBLFM line. The columns then get expanded and I have to do the C-u C-c TAB again after every recalculation. Is there a way to have the columns stay shrunk? Example: An unsolved problem in number theory: for what values of n is n! - 1 a prime? | n | n! -1 | prime? | |----+-------------------------------------------+--------| | / | <10> | | | 30 | 265252859812191058636308479999999 | 1 | | 31 | 8222838654177922817725562879999999 | 0 | | 32 | 263130836933693530167218012159999999 | 1 | | 33 | 8683317618811886495518194401279999999 | 1 | | 34 | 295232799039604140847618609643519999999 | 0 | | 35 | 10333147966386144929666651337523199999999 | 0 | #+TBLFM: @3$2..@>$2 = fact($1) -1 :: @3$3..@>$3 = prime($2, 10) Thanks! -- Nick "There are only two hard problems in computer science: cache invalidation, naming things, and off-by-one errors." -Martin Fowler