You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Section headers and footers do not currently abide by the comment_prefix setting, and as such, can break region folding if used for the section headers/footers as seen below.
example config:
comment_prefix = ""
import_heading_stdlib = "#region Standard Library"
import_footer_stdlib = "#endregion Standard Library"
expected output:
#region Standard Library
import sys
#endregion Standard Library
actual output:
# #region Standard Library
import sys
# #endregion Standard Library
The text was updated successfully, but these errors were encountered:
Section headers and footers do not currently abide by the comment_prefix setting, and as such, can break region folding if used for the section headers/footers as seen below.
example config:
expected output:
actual output:
The text was updated successfully, but these errors were encountered: