Skip to content

Commit

Permalink
good commit, bad commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Fields committed Oct 22, 2023
1 parent a36e8a0 commit 445fd3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export async function activate(context: vscode.ExtensionContext) {
vimrc.vimrcPath &&
path.relative(document.fileName, vimrc.vimrcPath) === ''
) {
// TODO: Should instead probably call `loadConfiguration` (in extensionBase.ts)
await configuration.load();
Logger.info('Sourced new .vimrc');
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@
},
"vim.handleKeys": {
"type": "object",
"description": "Delegate certain key combinations back to VSCode to be handled natively.",
"description": "Delegate certain key combinations back to VS Code to be handled natively.",
"default": {
"<C-d>": true,
"<C-s>": false,
Expand Down
1 change: 1 addition & 0 deletions src/mode/modeHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,7 @@ export class ModeHandler implements vscode.Disposable, IModeHandler {

// <C-d> triggers "add selection to next find match" by default,
// unless users explicity make <C-d>: true
// TODO: Destroy this silliness
if (key === '<C-d>' && !(configuration.handleKeys['<C-d>'] === true)) {
key = '<D-d>';
}
Expand Down

0 comments on commit 445fd3a

Please sign in to comment.