Skip to content

Commit

Permalink
[autofix.ci] apply automated fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
autofix-ci[bot] authored and antimonyGu committed Jan 2, 2025
1 parent 85ee772 commit 66a6dc1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clients/tabby-agent/src/codeLens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class CodeLensProvider implements Feature {
});
} else if (!previewBlockMarkers.includes("x")) {
// TODO: read keybinds from LSP client, then send to LSP server to avoid hardcode.
const acceptShortcut = isBrowser ? '' : ` (${process.platform === 'darwin' ? 'cmd+enter' : 'ctrl+enter'})`
const acceptShortcut = isBrowser ? "" : ` (${process.platform === "darwin" ? "cmd+enter" : "ctrl+enter"})`;
lineCodeLenses.push({
range: codeLensRange,
command: {
Expand All @@ -132,7 +132,7 @@ export class CodeLensProvider implements Feature {
},
});

const discardShortcut = isBrowser ? '' : ` (esc)`
const discardShortcut = isBrowser ? "" : ` (esc)`;
lineCodeLenses.push({
range: codeLensRange,
command: {
Expand Down

0 comments on commit 66a6dc1

Please sign in to comment.