commit | c6896e20f8e7e8d9fe0fd1ad333aae1130d714e1 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Thu May 30 22:32:34 2019 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Thu May 30 22:32:34 2019 +0200 |
tree | 4155d494ff12b6a2caf736f8f26e4edb826cb0c1 | |
parent | 402502d0e4019ca97330eff40b9fb13736304896 [diff] [blame] |
patch 8.1.1431: popup window listed as "Scratch" Problem: Popup window listed as "Scratch". Solution: List them as "Popup".
diff --git a/src/buffer.c b/src/buffer.c index ea61c5a..3bfb639 100644 --- a/src/buffer.c +++ b/src/buffer.c
@@ -5782,6 +5782,10 @@ if (bt_prompt(buf)) return (char_u *)_("[Prompt]"); #endif +#ifdef FEAT_TEXT_PROP + if (bt_popup(buf)) + return (char_u *)_("[Popup]"); +#endif return (char_u *)_("[Scratch]"); }