mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-09 13:45:26 +02:00
correct off-by-one error in initial tabstops so emacs renders properly
This commit is contained in:
@@ -28,7 +28,7 @@ static inline void
|
||||
init_tabstops(bool *tabstops, index_type count) {
|
||||
// In terminfo we specify the number of initial tabstops (it) as 8
|
||||
for (unsigned int t=0; t < count; t++) {
|
||||
tabstops[t] = (t+1) % 8 == 0 ? true : false;
|
||||
tabstops[t] = (t+0) % 8 == 0 ? true : false;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user