mirror of
https://github.com/tmux/tmux.git
synced 2026-08-28 09:31:34 +00:00
37b0bcd7c15b6dac69ac8cb1c0d9d6a4fd5c54c0
Change the way the grid is stored, previously it was: - a two-dimensional array of cells; - a two-dimensional array of utf8 data; - an array of line lengths. Now it is a single array of a new struct grid_line each of which represents a line and contains the length and an array of cells and an array of utf8 data. This will make it easier to add additional per-line members, such as flags.
Description
tmux source code
Languages
C
75.8%
Shell
16.1%
Roff
5.9%
Yacc
1%
M4
0.7%
Other
0.4%