mirror of
https://github.com/vim/vim.git
synced 2025-09-27 04:14:06 -04:00
patch 8.2.1637: Vim9: :put ={expr} does not work inside :def function
Problem: Vim9: :put ={expr} does not work inside :def function. Solution: Add ISN_PUT. (closes #6397)
This commit is contained in:
@@ -3399,7 +3399,7 @@ ins_reg(void)
|
||||
AppendCharToRedobuff(literally);
|
||||
AppendCharToRedobuff(regname);
|
||||
|
||||
do_put(regname, BACKWARD, 1L,
|
||||
do_put(regname, NULL, BACKWARD, 1L,
|
||||
(literally == Ctrl_P ? PUT_FIXINDENT : 0) | PUT_CURSEND);
|
||||
}
|
||||
else if (insert_reg(regname, literally) == FAIL)
|
||||
@@ -4776,7 +4776,7 @@ ins_pagedown(void)
|
||||
static void
|
||||
ins_drop(void)
|
||||
{
|
||||
do_put('~', BACKWARD, 1L, PUT_CURSEND);
|
||||
do_put('~', NULL, BACKWARD, 1L, PUT_CURSEND);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user