Name: Unwrap block Description: Delete the entire indentation block at once during refactoring Trigger: The cursor is located before and after `:` Example --- ``` if True: print(2) ``` -> ``` print(2) ```
Name: Unwrap block
Description: Delete the entire indentation block at once during refactoring
Trigger: The cursor is located before and after
:Example
->