# Code editor
# Why auto-completion window show messy code on the button?
The font of code editor does not support chars encoded with current locale, to solve this problem, you shoud:
- Open setting dialog and switch tab "Editor"
- Navigate to item Font name & size
- Choose the font that could display the text with current locale correctly.
# EditorConfig profile
EditorConfig helps maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs.
EditorConfig using .editorconfig
as its filename, follow the EditorConfig Specification.
Recommend you create a .editorconfig
file in the root directory of your database connection. or just put one in the topmost directory of Kangaroo data.
[*.sql]
indent_size = 4
indent_style = space
insert_final_newline = true
tab_size = 4