exvim / main

This is the main repository for exVim!
exvim.github.io
MIT License
739 stars 169 forks source link

vim crashes when finishing edit the file #93

Closed GordonWang closed 9 years ago

GordonWang commented 9 years ago

I have installed exvim plugin bundles in the master branch. When exiting the vim, it crashes. The error message is like this.

Vim: Caught deadly signal ABRT
Vim: Finished.
[1]    78554 abort      vim use_ali_apt_source.sh

Reproduce steps:

  1. You can put the content in a file named 'a.sh'
read -d '' source_list <<EOF
deb http://mirrors.sohu.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.sohu.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.sohu.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.sohu.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.sohu.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.sohu.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.sohu.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.sohu.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.sohu.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.sohu.com/ubuntu/ trusty-backports main restricted universe multiverse
EOF

echo $source_list
  1. use 'vim a.sh' to open the file.
  2. enter ':wq' to exit vim.

Then vim crashes.

jwu commented 9 years ago

I found this problem caused by the plugin scrooloose/syntastic: https://github.com/scrooloose/syntastic, disable it will temporary solve the problem.

jwu commented 9 years ago

https://github.com/scrooloose/syntastic/issues/1230 found the answer. Should upgrade your vim to 7.4 448

GordonWang commented 9 years ago

@jwu Thanks for your quick reply~