patch 8.1.2281: 'showbreak' cannot be set for one window
Problem: 'showbreak' cannot be set for one window.
Solution: Make 'showbreak' global-local.
diff --git a/src/edit.c b/src/edit.c
index 7786528..a9cd2a4 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -3238,7 +3238,7 @@
/* getviscol() is slow, skip it when 'showbreak' is empty,
* 'breakindent' is not set and there are no multi-byte
* characters */
- if ((*p_sbr == NUL && !curwin->w_p_bri
+ if ((*get_showbreak_value(curwin) == NUL && !curwin->w_p_bri
&& !has_mbyte) || getviscol() < v)
break;
++width;