keybindings.ts
commands/keybindings/keybindings.ts
54
Lines
1645
Bytes
1
Exports
6
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file lives in the command layer. It likely turns a user action into concrete program behavior.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with commands. It contains 54 lines, 6 detected imports, and 1 detected exports.
Important relationships
Detected exports
call
Keywords
keybindingspathtextfileexistseditortemplateresultopenedmkdirwritefiledirname
Detected imports
fs/promisespath../../keybindings/loadUserBindings.js../../keybindings/template.js../../utils/errors.js../../utils/promptEditor.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import { mkdir, writeFile } from 'fs/promises'
import { dirname } from 'path'
import {
getKeybindingsPath,
isKeybindingCustomizationEnabled,
} from '../../keybindings/loadUserBindings.js'
import { generateKeybindingsTemplate } from '../../keybindings/template.js'
import { getErrnoCode } from '../../utils/errors.js'
import { editFileInEditor } from '../../utils/promptEditor.js'
export async function call(): Promise<{ type: 'text'; value: string }> {
if (!isKeybindingCustomizationEnabled()) {
return {
type: 'text',
value:
'Keybinding customization is not enabled. This feature is currently in preview.',
}
}
const keybindingsPath = getKeybindingsPath()
// Write template with 'wx' flag (exclusive create) — fails with EEXIST if
// the file already exists. Avoids a stat pre-check (TOCTOU race + extra syscall).
let fileExists = false
await mkdir(dirname(keybindingsPath), { recursive: true })
try {
await writeFile(keybindingsPath, generateKeybindingsTemplate(), {
encoding: 'utf-8',
flag: 'wx',
})
} catch (e: unknown) {
if (getErrnoCode(e) === 'EEXIST') {
fileExists = true
} else {
throw e
}
}
// Open in editor
const result = await editFileInEditor(keybindingsPath)
if (result.error) {
return {
type: 'text',
value: `${fileExists ? 'Opened' : 'Created'} ${keybindingsPath}. Could not open in editor: ${result.error}`,
}
}
return {
type: 'text',
value: fileExists
? `Opened ${keybindingsPath} in your editor.`
: `Created ${keybindingsPath} with template. Opened in your editor.`,
}
}