2017-12-03 3 views
0

vscodevim을 사용하면 Vim do와 같이 =을 사용하여 자동 정렬을 사용하는 방법은 무엇입니까? 그래서 예를 들면 :Vim Autoaligment in VscodeVim

.wrapper-box { 
     // line is out of tab. 
     .box { 
      border: 1px solid red; 
     } 
} 

정력에, 나는 .wrapper-box을 선택한 다음 = 및 라인 autoalignment/자동 들여 칠 수. VscodeVim에서이 키 바인딩을 사용하는 방법?

답변

0
`"vim.otherModesKeyBindingsNonRecursive": [ 
     { 
      "before": [ 
       "=" 
      ], 
      "after": [], 
      "commands": [ 
       { 
        "command": "editor.action.reindentlines", 
        "args": [] 
       } 
      ] 
     } 
    ] 
` 

죄송합니다.