Skip to content

Commit 28fdf9c

Browse files
committed
feat(config): add neovim and VS Code editor options
1 parent 2d8c127 commit 28fdf9c

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

src/config.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ async function editFile(filePath: string, onExit: () => void) {
1111
(await p.select({
1212
message: "Select an editor",
1313
options: [
14+
{
15+
label: "neovim",
16+
value: "nvim",
17+
},
1418
{
1519
label: "vim",
1620
value: "vim",
@@ -19,6 +23,10 @@ async function editFile(filePath: string, onExit: () => void) {
1923
label: "nano",
2024
value: "nano",
2125
},
26+
{
27+
label: "code",
28+
value: "code",
29+
},
2230
{
2331
label: "cancel",
2432
value: "cancel",

0 commit comments

Comments
 (0)