summaryrefslogtreecommitdiffstats
path: root/src/evalwindow.c
diff options
context:
space:
mode:
authorSean Dewar <6256228+seandewar@users.noreply.github.com>2024-02-20 22:05:10 +0100
committerChristian Brabandt <cb@256bit.org>2024-02-20 22:05:10 +0100
commitf865895c874b0936b0563ebfef7490aac8cb8a1f (patch)
tree0fbc88c23ac8df82c63b38b59c763438c8348b68 /src/evalwindow.c
parent704966c2545897dfcf426dd9ef946aeb6fa80c38 (diff)
patch 9.1.0119: can move away from cmdwin using win_splitmove()v9.1.0119
Problem: can switch windows while textlocked via f_win_gotoid and f_win_splitmove (which also allows switching in the cmdwin). Solution: Check text_or_buf_locked in f_win_splitmove() (Sean Dewar) While at it, call text_or_buf_locked() in f_win_gotoid() instead of testing for cmdwin_type() (which text_buf_locked() does and in addition will also verify that the buffer is not locked). closes: #14042 Signed-off-by: Sean Dewar <6256228+seandewar@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'src/evalwindow.c')
-rw-r--r--src/evalwindow.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/evalwindow.c b/src/evalwindow.c
index 5016eb4588..00081d43d5 100644
--- a/src/evalwindow.c
+++ b/src/evalwindow.c
@@ -824,11 +824,8 @@ f_win_gotoid(typval_T *argvars, typval_T *rettv)
return;
id = tv_get_number(&argvars[0]);
- if (cmdwin_type != 0)
- {
- emsg(_(e_invalid_in_cmdline_window));
+ if (text_or_buf_locked())
return;
- }
#if defined(FEAT_PROP_POPUP) && defined(FEAT_TERMINAL)
if (popup_is_popup(curwin) && curbuf->b_term != NULL)
{
@@ -998,7 +995,7 @@ f_win_splitmove(typval_T *argvars, typval_T *rettv)
}
// Check if we can split the target before we bother switching windows.
- if (check_split_disallowed(targetwin) == FAIL)
+ if (text_or_buf_locked() || check_split_disallowed(targetwin) == FAIL)
return;
if (curwin != targetwin)