diff src/buffer.c @ 16859:0154363d3b98 v8.1.1431

patch 8.1.1431: popup window listed as "Scratch" commit https://github.com/vim/vim/commit/c6896e20f8e7e8d9fe0fd1ad333aae1130d714e1 Author: Bram Moolenaar <Bram@vim.org> Date: Thu May 30 22:32:34 2019 +0200 patch 8.1.1431: popup window listed as "Scratch" Problem: Popup window listed as "Scratch". Solution: List them as "Popup".
author Bram Moolenaar <Bram@vim.org>
date Thu, 30 May 2019 22:45:04 +0200
parents ce04ebdf26b8
children a836d122231a
line wrap: on
line diff
--- a/src/buffer.c
+++ b/src/buffer.c
@@ -5782,6 +5782,10 @@ buf_spname(buf_T *buf)
 	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]");
     }