vscode-open-in-vim
vscode-open-in-vim copied to clipboard
iterm2: nvim: command not found
extension
settings
"open-in-vim.useNeovim": true,
"open-in-vim.openMethod": "macos.iterm",
iterm output
/var/folders/mj/58p0n9595_37gkb9nty4ckwm0000gn/T/tmp-86850R6boowUGSfbF.tmp: line 3: nvim: command not found
script editor
does not work - same error
tell application "iTerm"
set myNewWin to (create window with default profile command "/bin/zsh -c 'nvim'")
end tell
works
tell application "iTerm"
set newWindow to (create window with default profile)
tell current session of newWindow
write text "/bin/zsh -c 'nvim'"
end tell
end tell
Is this problem related to my iterm configuration or the extension?