2017-12-03 2 views
0

vscodevimを使用すると、Vimのように=を使用して自動調整を使用する方法は?ですから、例えば:VimのAutoAligment in 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": [] 
       } 
      ] 
     } 
    ] 
` 

申し訳ありません。