dotfiles: Vim does not suspend after update
I’ve updated yadr last night and now i can’t send vim to background with Ctrl-Z
after hitting ctrl-z i see error E42: No errors
. Command :sus
works fine.

About this issue
- Original URL
- State: closed
- Created 9 years ago
- Comments: 29 (4 by maintainers)
Sorry, try this.
echo "nnoremap <silent> <C-z> :sus<CR>" >> ~/.vimrc.after
. Overrides should go into~/.vimrc.after
, not~/.vimrc.before
, I believe.You should also open ~/.vimrc.before and remove the
nnoremap <silent> <C-z> :sus
line because it’s not needed.Sorry for taking so long. I greped
~/.yadr/vim/
for the<C-z>
key binding and found it mapped within~/.yadr/vim/settings/yadr-keymap.vim
to:cp
, which is used to navigate the quick fix error list (not actually a Syntastic command, so I was wrong about that). You can just remove or change those mappings and<C-z>
works again.