comparison src/testdir/shared.vim @ 13460:aa6ecb272236 v8.0.1604

patch 8.0.1604: paste test may fail if $DISPLAY is not set commit https://github.com/vim/vim/commit/a903472cfa048e7a29d9c6ed0945ef03e48c6a08 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 13 15:43:46 2018 +0100 patch 8.0.1604: paste test may fail if $DISPLAY is not set Problem: Paste test may fail if $DISPLAY is not set. Solution: Add WorkingClipboard() and use it in the paste test.
author Christian Brabandt <cb@256bit.org>
date Tue, 13 Mar 2018 15:45:07 +0100
parents fa198b71bab2
children 87ffb7f85b28
comparison
equal deleted inserted replaced
13459:4879a00cec7f 13460:aa6ecb272236
258 258
259 func CanRunGui() 259 func CanRunGui()
260 return has('gui') && ($DISPLAY != "" || has('gui_running')) 260 return has('gui') && ($DISPLAY != "" || has('gui_running'))
261 endfunc 261 endfunc
262 262
263 func WorkingClipboard()
264 if !has('clipboard')
265 return 0
266 endif
267 if has('x11')
268 return $DISPLAY != ""
269 endif
270 return 1
271 endfunc
272
263 " Get line "lnum" as displayed on the screen. 273 " Get line "lnum" as displayed on the screen.
264 " Trailing white space is trimmed. 274 " Trailing white space is trimmed.
265 func! Screenline(lnum) 275 func! Screenline(lnum)
266 let chars = [] 276 let chars = []
267 for c in range(1, winwidth(0)) 277 for c in range(1, winwidth(0))