From: David E. <de...@ra...> - 2012-01-21 16:09:27
|
Jeff Cen writes: > It will be great if the shell can display all the 20 columns without > breaking in the middle. This feature will be helpful to visually > checking the data. [...] > The matlab IDE allows such display. I wonder if anyone is aware of a > way to do this in the emacs matlab mode. That's a problem with running processes in comint. You can set the number of columns manually: create a shell skript "mymatlab" or similar, containing the following export COLUMNS=175 stty rows 65 cols 175 <PATH TO MATLAB>/matlab $* Adapt the number of columns/rows to your needs and use that script in `matlab-shell-command'. Cheers, David |