mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	Script Editor now displays positional column
This solves #17931 and makes the script editor consistent with other text editors(Sublime, Gedit, Vim) in displaying the position rather than the raw number of characters.
This commit is contained in:
		
							parent
							
								
									b774156729
								
							
						
					
					
						commit
						4e26e5e268
					
				
					 3 changed files with 20 additions and 1 deletions
				
			
		|  | @ -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() { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Unknown
						Unknown