diff options
| author | Maxime Coste <mawww@kakoune.org> | 2022-07-19 22:47:39 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2022-07-19 22:47:39 +1000 |
| commit | 559af669c77a3b3b6de0376f177ebbba5ebd0328 (patch) | |
| tree | 1ad3deac73dac47abdfe0a159172481688f6ec51 /src | |
| parent | 9ebd0cd9c12523e02dae96130454791e48479704 (diff) | |
Remove out-of-date column computation in show-whitespaces
Now that we compute display buffer on whole lines, it does not make
sense to compute the tab padding based off the window column position
Fixes #4674
Diffstat (limited to 'src')
| -rw-r--r-- | src/highlighters.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/highlighters.cc b/src/highlighters.cc index 4b9540b6..39fd28fd 100644 --- a/src/highlighters.cc +++ b/src/highlighters.cc @@ -1061,7 +1061,6 @@ private: const int tabstop = context.context.options()["tabstop"].get<int>(); auto whitespaceface = context.context.faces()["Whitespace"]; const auto& buffer = context.context.buffer(); - auto win_column = context.setup.first_column; for (auto& line : display_buffer.lines()) { for (auto atom_it = line.begin(); atom_it != line.end(); ++atom_it) @@ -1085,8 +1084,7 @@ private: if (cp == '\t') { const ColumnCount column = get_column(buffer, tabstop, coord); - const ColumnCount count = tabstop - (column % tabstop) - - std::max(win_column - column, 0_col); + const ColumnCount count = tabstop - (column % tabstop); atom_it->replace(m_tab + String(m_tabpad[(CharCount)0], count - m_tab.column_length())); } else if (cp == ' ') |
