keyhr / vscode-42-c-format

A vscode extension to provide formatting from c_formatter_42
https://marketplace.visualstudio.com/items?itemName=keyhr.42-c-format
MIT License
10 stars 1 forks source link

Wrong identation level #9

Closed Starry03 closed 6 days ago

Starry03 commented 3 weeks ago

the line " mlx_put_image_to_window(window->mlx, window->window, window->bg_img, x, y);" is formatted as " mlx_put_image_to_window(window->mlx, window->window, window->bg_img, x, y);" when it should be " mlx_put_image_to_window(window->mlx, window->window, window->bg_img, x, y);" from running norminette

keyhr commented 6 days ago

This VSCode extension serves solely as a provider for c_formatter_42, so any formatting issues are related to the formatter itself. Since the c_formatter_42 project is no longer actively maintained, you can try fixing it yourself.

BTW, what is the difference between the formatting result and the expected one?