2017-12-03 299 views
0

使用vscodevim,如何使用自動調整使用=就像Vim一樣?因此,例如:Vsc自動調節VscodeVim

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

在vim中,我可以選擇.wrapper-box然後打=和行自動對準/自動縮進。如何在VscodeVim中使用這個鍵綁定?

回答

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

對不起,回答了。