`cursorWordPartStartLeft` 和 `cursorWordPartLeft` 有什么区别?

问题描述

两者都试过,好像做同样的事情,有人能指出不同之处吗?

解决方法

参见https://github.com/microsoft/vscode/issues/53497子词导航:令人困惑的键绑定名称

简而言之,没有区别,但是 #container { display: flex; flex-flow: row wrap; margin-bottom: 5px; } #container div.inner { background: #aaa; height: 100px; width: 100px; margin: 2px; flex: auto; } /*Remove these syles later they are just for the buttons*/ #add-box { position: fixed; left: 10px; top: 10px; font-size } #remove-box { position: fixed; left: 80px; top: 10px; font-size } 版本是在后来添加类似的非启动版本时首先出现的(因为 <div id='container'> <div class='inner'></div> </div> <button onclick='addDiv()' id = 'add-box'>Add box</button> <button onclick='removeDiv()' id = 'remove-box'>Remove box</button> 部分令人困惑并且没有向意义)。似乎保留 start 版本是为了向后兼容。