Mercurial > vim
view src/testdir/test_autochdir.vim @ 11585:18373179040e v8.0.0675
patch 8.0.0675: 'colorcolumn' has a higher priority than 'hlsearch'
commit https://github.com/vim/vim/commit/774e5a9673260b1b8b88463669213a96637f72e8
Author: Bram Moolenaar <Bram@vim.org>
Date: Sun Jun 25 18:03:37 2017 +0200
patch 8.0.0675: 'colorcolumn' has a higher priority than 'hlsearch'
Problem: 'colorcolumn' has a higher priority than 'hlsearch', it should be
the other way around. (Nazri Ramliy)
Solution: Change the priorities. (LemonBoy, closes #1794)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sun, 25 Jun 2017 18:15:03 +0200 |
parents | 38e2fc4ee4ef |
children | 03a6aeea2096 |
line wrap: on
line source
" Test 'autochdir' behavior if !exists("+autochdir") finish endif func Test_set_filename() call test_autochdir() set acd new w samples/Xtest call assert_equal("Xtest", expand('%')) call assert_equal("samples", substitute(getcwd(), '.*/\(\k*\)', '\1', '')) bwipe! set noacd call delete('samples/Xtest') endfunc