VHDL-LS / rust_hdl_vscode

VHDL Language Support for VSCode
MIT License
53 stars 17 forks source link

Make indentationRules case-insensitive (#81) #83

Closed Sv3n closed 8 months ago

Sv3n commented 8 months ago

indentationRules determine if the next line is indented whenever you press enter. These are case sensitive by default (triggering on lower-case only), which does not work well if you write VHDL with upper-case keywords. VHDL itself is not case sensitive.

This pull requests makes the rules case-insensitive.

Schottkyc137 commented 8 months ago

LGTM. Thanks for the nice addition!