Re: [O] Make wide tables more readable

2016-12-01 Thread David Talmage
On Thu, Dec 1, 2016 at 3:17 PM, David Talmage wrote: > ... > (fill-paragraph). I've already tried org-table-wrap-region and couldn't > figure it out. > I figured out org-table-wrap-region. Most of the time it works as expected. Sometimes it puts text cells below the one I want. I ended up ma

Re: [O] Make wide tables more readable

2016-12-01 Thread Clément Pit--Claudel
On Thu, Dec 1, 2016 at 3:43 PM, Joost Kremers wrote: > Why not use `text-scale-adjust`? On 2016-12-01 16:12, John Kitchin wrote: > If I had to guess its because I was unaware of that command when I wrote > those functions ;) Note that these two don't do the same thing. Text-scale-adjust change

Re: [O] Make wide tables more readable

2016-12-01 Thread John Kitchin
If I had to guess its because I was unaware of that command when I wrote those functions ;) John --- Professor John Kitchin Doherty Hall A207F Department of Chemical Engineering Carnegie Mellon University Pittsburgh, PA 15213 412-268-7803 @johnkitchin http://kitchi

Re: [O] Make wide tables more readable

2016-12-01 Thread Joost Kremers
On Thu, Dec 01 2016, John Kitchin wrote: I use: ;;;###autoload (defun tq-increase-text-size () "Increase text size." (interactive) (set-face-attribute 'default nil :height (truncate (* 1.1 (face-attribute 'default :height) ;;;###autoload (defun tq-decrease-text-size () "Decrea

Re: [O] Make wide tables more readable

2016-12-01 Thread John Kitchin
I use: ;;;###autoload (defun tq-increase-text-size () "Increase text size." (interactive) (set-face-attribute 'default nil :height (truncate (* 1.1 (face-attribute 'default :height) ;;;###autoload (defun tq-decrease-text-size () "Decrease text size." (interactive) (set-face-a

[O] Make wide tables more readable

2016-12-01 Thread David Talmage
I'm looking for ways to make a wide table more readable. My motivation is from a table that is too wide to fit on my screen. I need to be able to see all of the contents of a cell. If it were just text, I'd use M-q (fill-paragraph). I've already tried org-table-wrap-region and couldn't figure it