Timeline for Truncate beginning of right-aligned column in org table
Current License: CC BY-SA 3.0
9 events
| when toggle format | what | by | license | comment | |
|---|---|---|---|---|---|
| Apr 5, 2022 at 3:59 | comment | added | nispio | Update 2022: It looks like org-align-table has become significantly more complex since this was written (looking at Org Mode version 9.5), and this modification no longer applies. To achieve this result in the latest org mode would require modifying org-table--shrink-field. I will post an update if I ever get around to making it work again. | |
| Feb 4, 2015 at 11:32 | history | edited | itsjeyd | CC BY-SA 3.0 | Turn on syntax highlighting. |
| Oct 14, 2014 at 16:36 | vote | accept | nispio | ||
| Oct 6, 2014 at 23:12 | comment | added | itsjeyd | @nispio Not sure about pull requests, but you could try submitting a suggestion along these lines to the mailing list. EDIT: It says here that you can also submit patches to the mailing list, and this page describes the "preferred way of submitting patches" to org-mode. | |
| Oct 6, 2014 at 23:07 | comment | added | nispio | It would be nice if a future version of org-mode would break this part out into a separate defun so that it could more easily be advised or replaced. Are the org-mode developers pretty open to pull requests for things like this? | |
| Oct 6, 2014 at 23:02 | history | edited | nispio | CC BY-SA 3.0 | fixed a bug for falign==nil |
| Oct 6, 2014 at 22:50 | comment | added | itsjeyd | @nispio "In general I try to avoid directly modifying existing libraries if possible." That is exactly why I suggested creating a copy of the function :) Right now I don't see how you would do this using advice, since the arguments that are relevant for determining which portion of a cell to hide are calculated on the fly when calling add-text-properties in the original command. | |
| Oct 6, 2014 at 22:35 | comment | added | nispio | Can this be done as advice? In general I try to avoid directly modifying existing libraries if possible. Especially ones that get frequent updates from up-stream sources. EDIT: I see now that you are recommending creating a copy of the function in my init file. I guess that is better than directly modifying it. | |
| Oct 6, 2014 at 22:29 | history | answered | itsjeyd | CC BY-SA 3.0 |