I have a column in an org-mode table that contains long file names. The interesting part of the filename is the last few characters rather than the first. For example, given the files below:
/data/capture/abcd_spectrum_01292000.dat /data/capture/abcd_spectrum_02251435.dat /data/capture/abcd_spectrum_02251847.dat /data/capture/abcd_spectrum_02251848.dat /data/capture/abcd_spectrum_02251848.dat /data/capture/abcd_spectrum_02251849.dat /data/capture/abcd_spectrum_02251851.dat /data/capture/abcd_spectrum_02251852.dat /data/capture/abcd_spectrum_02251852.dat /data/capture/abcd_spectrum_02270910.dat I want my org table to look like this:
| File | TD | FD | MF | Notes: | |-----------------+----+----+----+----------------------| | <r15> | | | | <l20> | | <=_01292000.dat | | | | | | <=_02251435.dat | | | | | | <=_02251847.dat | | | | | | <=_02251848.dat | | | | | | <=_02251848.dat | | | | | | <=_02251849.dat | | | | | | <=_02251851.dat | | | | | | <=_02251852.dat | | | | | | <=_02251852.dat | | | | | | <=_02270910.dat | | | | | But instead it looks like this:
| File | TD | FD | MF | Notes: | |-----------------+----+----+----+----------------------| | <r15> | | | | <l20> | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | | /data/capture=> | | | | | Is it possible to make right-aligned columns truncate to the left, so that I can see the right-most part of the entries?