Steven Guh

Results 138 comments of Steven Guh

Since we don't have a concept a layer just yet. If we are adding bindings outside of major mode, the extension offering the command will needed to be bundled. I...

> I could also extend the built in git layer/mode with some of the vendor neutral suggestion you mentioned. That would be awesome! > Implementing layers is interesting and definitely...

VSCode terminal api is very limited. Maybe we can use other extension like https://marketplace.visualstudio.com/items?itemName=edonet.vscode-command-runner. Would love help on this, and added help wanted tag.

Or if we want to implement within vspacecode, here is an example how GitLens does it. https://github.com/eamodio/vscode-gitlens/blob/32291bfc5dae727d94e62a586f6681e37d6d0dc4/src/git/shell.ts

Continue from https://github.com/VSpaceCode/vscode-which-key/issues/9#issuecomment-859084055 > I've been thinking about this for a bit, and I wonder if it would be possible (and if so, a good idea) to allow settings to...

Sorry for a delayed response, have been quite busy at work. > True. I suppose VSpaceCode could start with a single "default major modes" extension or something, with the benefit...

Just an update. The base of this is implemented somewhat without language specific config, and we are reusing the conditional bindings for now. We can always break it out if...

Following up from https://github.com/VSpaceCode/vscode-which-key/pull/61 > On a side note, I spent some time looking into https://github.com/VSpaceCode/VSpaceCode/issues/199. In the last comment in the issue, I read that "the base of this...

vscode vim is configured the untrusted workspace to `true`, and it seems like we can do the same. https://github.com/VSCodeVim/Vim/blob/master/package.json#L46-L49

The `SPC b {H/J/K/L}` are the same as Spacemacs. We added `SPC b {h/j/k/l}` because the capital keys are quite hard to enter for this common operation. We also didn't...