Mercurial > vim
diff src/evalfunc.c @ 17026:905e1b154058 v8.1.1513
patch 8.1.1513: all popup functionality is in functions, except :popupclear
commit https://github.com/vim/vim/commit/3ff5f0f05d437a6b3eaf3caa5dc2762b49314617
Author: Bram Moolenaar <Bram@vim.org>
Date: Mon Jun 10 13:11:22 2019 +0200
patch 8.1.1513: all popup functionality is in functions, except :popupclear
Problem: All popup functionality is in functions, except :popupclear.
Solution: Add popup_clear() for consistency. Also rename sound_stopall() to
sound_clear().
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 10 Jun 2019 13:15:07 +0200 |
parents | 1841c03a9b5e |
children | 5ed4965ebc7b |
line wrap: on
line diff
--- a/src/evalfunc.c +++ b/src/evalfunc.c @@ -812,6 +812,7 @@ static struct fst #endif #ifdef FEAT_TEXT_PROP {"popup_atcursor", 2, 2, f_popup_atcursor}, + {"popup_clear", 0, 0, f_popup_clear}, {"popup_close", 1, 2, f_popup_close}, {"popup_create", 2, 2, f_popup_create}, {"popup_getoptions", 1, 1, f_popup_getoptions}, @@ -928,10 +929,10 @@ static struct fst #endif {"sort", 1, 3, f_sort}, #ifdef FEAT_SOUND + {"sound_clear", 0, 0, f_sound_clear}, {"sound_playevent", 1, 2, f_sound_playevent}, {"sound_playfile", 1, 2, f_sound_playfile}, {"sound_stop", 1, 1, f_sound_stop}, - {"sound_stopall", 0, 0, f_sound_stopall}, #endif {"soundfold", 1, 1, f_soundfold}, {"spellbadword", 0, 1, f_spellbadword},