# 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:

  1. Open setting dialog and switch tab "Editor"
  2. Navigate to item Font name & size
  3. 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
Last Updated: 2024-08-26T09:46:03.000Z