Description
The following snippet uses the default indentation of CMakeLists.txt
add_library(${PROJECT_NAME} src/state.cpp src/container.cpp) next_bad_indented_line()
But the following indents properly:
add_library(${PROJECT_NAME} src/foo.cpp ) next_well_indented_line()
This is using the automatic indentation suggestion provided when hitting Enter at the end of a line.
Happens on 4.4 beta but not on 4.2.1