設定縮排

在設定程式碼縮排時,這非常有用

if condition1
if condition2
# some commands here
endif
endif

將游標移動到第二行,然後 >>,程式碼將向右縮排。

現在你可以通過繼續到第 3 行重複你的動作,然後點選 . 兩次,結果將是

if condition1
    if condition2
        # some commands here
endif
endif