Earlier quoted context omitted.
> No ⌘. sending CTRL-C This comment sounded familiar[0]. :) For what it's worth, still possible with: keybind = "cmd+.=text:\x03" [0]: https://news.ycombinator.com/item?id=42889411
Haha, thanks again :) I've been delaying a major migration to NeoVim on [modern-terminal-I-can-never-decide-which] for years. Wezterm, Ghostty, iTerm2. None is exactly perfect, so I just keep watching them develop.
" Load vim configs
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath = &runtimepath
source ~/.vimrcThen in my zshrc (well... I organize differently) I have the function
function _exists() {
command -v "$1" &> /dev/null
}
alias_vim() {
if (_exists nvim)
then
alias vi='nvim'
alias vim='nvim'
elif (_exists vim)
then
alias vi='vim'
fi
}