Keil slash and backslash
I generated an STM32 project using STM32CubeMX for Keil (MDK-ARM).
In Keil, functions like HAL_GPIO_TogglePin() don’t show up in code completion (IntelliSense).
I found that in Project → Options for Target → C/C++ → Include Paths, the paths use / (for example ../Drivers/STM32F1xx_HAL_Driver/Inc) instead of \.
If I manually change / to \, code completion works — but STM32CubeMX changes them back after every code regeneration.
How can I permanently fix or configure STM32CubeMX to generate Windows-style include paths (\) for Keil projects?

