vim-patch:8.1.2371: FEAT_TEXT_PROP is a confusing name (#35466)

Problem:    FEAT_TEXT_PROP is a confusing name.
Solution:   Use FEAT_PROP_POPUP. (Naruhiko Nishino, closes vim/vim#5291)

05ad5ff0ab

textprop,popuwin remain N/A features.
getchar.c has the relevant code changes.

Port runtest.vim changes from patch v8.1.1561.

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
Jan Edmund Lazo
2025-08-25 03:16:16 -04:00
committed by GitHub
parent 58060c2340
commit 5f3d00a5a6
4 changed files with 8 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ func Test_win_execute()
let line = win_execute(134343, 'echo getline(1)')
call assert_equal('', line)
if has('textprop')
if has('popupwin')
let popupwin = popup_create('the popup win', {'line': 2, 'col': 3})
redraw
let line = 'echo getline(1)'->win_execute(popupwin)