Mercurial > vim
view src/testdir/test_signs.in @ 8847:470ea7526cc6 v7.4.1711
commit https://github.com/vim/vim/commit/a742e084b677f76c67e9e52c4f9fb9ab24002e20
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Apr 5 21:10:38 2016 +0200
patch 7.4.1711
Problem: When using try/catch in 'statusline' it is still considered an
error and the status line will be disabled.
Solution: Check did_emsg instead of called_emsg. (haya14busa, closes https://github.com/vim/vim/issues/729)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 05 Apr 2016 21:15:05 +0200 |
parents | 6a598be6d4e8 |
children |
line wrap: on
line source
Tests for signs STARTTEST :so small.vim :if !has("signs") : e! test.ok : wq! test.out :endif :" :sign define JumpSign text=x :exe 'sign place 42 line=2 name=JumpSign buffer=' . bufnr('') :" Split the window to the bottom to verify :sign-jump will stay in the current :" window if the buffer is displayed there :bot split :exe 'sign jump 42 buffer=' . bufnr('') :call append(line('$'), winnr()) :$-1,$w! test.out ENDTEST STARTTEST :qa! ENDTEST