intellij rearrange code within line code example
Example 1: line break in python code
a = '1' + '2' + '3' + \
'4' + '5'
#preferred by style guide
a = ('1' + '2' + '3' +
'4' + '5')
Example 2: code to add horizonatl line in xml
<View
android:layout_width="2dp"
android:layout_height="match_parent"
android:layout_marginTop="4dp"
android:background="@android:color/darker_gray" />