diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-05-04 09:58:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-04 09:58:35 +0200 |
commit | 6405dcb7dbf4447729b6402208adbb151a5e9f1a (patch) | |
tree | eccc0547c17d9fd7d44c4fe3ad34e9b5750c8648 /editor | |
parent | d6ddfdf004a1b5a334a0709e87e2e427624e616b (diff) | |
parent | 4e26e5e26855c29e47f4e38f03c0f697af5b8c2d (diff) |
Merge pull request #18595 from AlexHoratio/script_pos_columns
Script Editor now displays positional column
Diffstat (limited to 'editor')
-rw-r--r-- | editor/code_editor.cpp | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 4c7f2f53cc..19bcb28fa5 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -677,7 +677,20 @@ void CodeTextEditor::_reset_zoom() { void CodeTextEditor::_line_col_changed() { line_nb->set_text(itos(text_editor->cursor_get_line() + 1)); - col_nb->set_text(itos(text_editor->cursor_get_column() + 1)); + + String line = text_editor->get_line(text_editor->cursor_get_line()); + + int positional_column = 0; + + for (int i = 0; i < text_editor->cursor_get_column(); i++) { + if (line[i] == '\t') { + positional_column += text_editor->get_indent_size(); //tab size + } else { + positional_column += 1; + } + } + + col_nb->set_text(itos(positional_column + 1)); } void CodeTextEditor::_text_changed() { |