Changes between Version 24 and Version 25 of Ticket #4138, comment 16
- Timestamp:
- 10/28/21 20:58:17 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #4138, comment 16
v24 v25 18 18 Rethinking about what looks to me your persistence to ignore the justification issue. Perhaps you are trying to imply the problem should be solved by smaller, measurable, steps. As if you were saying: let us attempt to solve just the swapping of columns issue that was raised here. Forget, for now, about possible month names in an RTL language. Or have justification of file names in a way that is expected by readers of RTL languages. Hopefully, solving the swapped columns issue will bring us to a better position. And then we will see how to continue. In that case, perhaps the first step should be for MC to insert an LTR enforcing artificial character at the end of each column. That is, in each column, and for each line of that column, MC will insert a Left To Right enforcing artificial character. Putting that in other words: if today MC has 19 19 20 | XXXXXXXX | XXXXXXXX | XXXXXXXX|21 | XXXXXXXX | XXXXXXXX | XXXXXXXX|20 | XXXXXXXX | XXXXXXXX | XXXXXXXX | 21 | XXXXXXXX | XXXXXXXX | XXXXXXXX | 22 22 23 23 Where X is any character, of any language, including white space. And a bar is the columns separator character. Then after the change MC will have 24 24 25 F | XXXXXXXX F | XXXXXXXX F | XXXXXXXX F|26 F | XXXXXXXX F | XXXXXXXX F | XXXXXXXX F|25 ^c^| XXXXXXXX ^c^| XXXXXXXX ^c^| XXXXXXXX ^c^| 26 ^c^| XXXXXXXX ^c^| XXXXXXXX ^c^| XXXXXXXX ^c^| 27 27 28 where Fis the bidi pseudo character to enforce a Left To Right direction. It is a pseudo character partially because the human user will not see it. It has no width. It is more a control sequence then a character of the language. It is injected to the stream the terminal receives so that its bidi layer can arrange the actual characters correctly. Of course, the Linux console, and any non bidi aware terminal, will get confused by that pseudo bidi character.28 where ^c^ is the bidi pseudo character to enforce a Left To Right direction. It is a pseudo character partially because the human user will not see it. It has no width. It is more a control sequence then a character of the language. It is injected to the stream the terminal receives so that its bidi layer can arrange the actual characters correctly. Of course, the Linux console, and any non bidi aware terminal, will get confused by that pseudo bidi character. 29 29 As I wrote, my bidi knowledge is superficial. And I don’t know MC internals.