]> git.ipfire.org Git - thirdparty/vim.git/log
thirdparty/vim.git
78 min agopatch 9.2.0382: Wayland: focus-stealing is non-working master v9.2.0382
Foxe Chen [Mon, 20 Apr 2026 17:59:56 +0000 (17:59 +0000)] 
patch 9.2.0382: Wayland: focus-stealing is non-working

Problem:  Wayland: focus-stealing is non-working
Solution: Remove it, the feature could be re-implemented using
          clipboard-providers feature, see :h wayland-primary-selection
          (Foxe Chen).

closes: #19984

Signed-off-by: Foxe Chen <chen.foxe@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
118 min agopatch 9.2.0381: Vim9: Missing check_secure() in exec_instructions() v9.2.0381
Christian Brabandt [Mon, 20 Apr 2026 17:44:45 +0000 (17:44 +0000)] 
patch 9.2.0381: Vim9: Missing check_secure() in exec_instructions()

Problem:  Vim9: Missing check_secure() when executing ISN_STOREENV
          instruction (Andrej Tomči)
Solution: Add check_secure(), add test.

closes: #19992

Signed-off-by: Christian Brabandt <cb@256bit.org>
2 hours agopatch 9.2.0380: completion: a few issues in completion code v9.2.0380
glepnir [Mon, 20 Apr 2026 17:36:56 +0000 (17:36 +0000)] 
patch 9.2.0380: completion: a few issues in completion code

Problem: ins_compl_stop() sets compl_best_matches = 0, but that's a
         pointer, should reset compl_num_bests instead,
         find_common_prefix() reads cpt_sources_array[cur_source] without
         checking cur_source != -1 which causes an OOB for -1,
         find_next_completion_match(): second `if` in the pending loop
         should be `else if`. Forward paging only moves one step per call.

Solution: Reset compl_num_bests instead, add a check for cur_source not
          equal -1, change if to else if (glepnir)

closes: #20000

Signed-off-by: glepnir <glephunter@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2 hours agopatch 9.2.0379: gui.color_approx is never used v9.2.0379
Hirohito Higashi [Mon, 20 Apr 2026 17:18:53 +0000 (17:18 +0000)] 
patch 9.2.0379: gui.color_approx is never used

Problem:  gui.color_approx in gui_T has not been assigned anywhere since
          patch 7.4.2094 ("The color allocation in X11 is overly
          complicated", 2016), which dropped the single "gui.color_approx = TRUE;"
          site.  Because the member is zero-initialized and never written, the
          check "if (gui.color_approx)" in gui_mch_init() is always false and the
          "E458: Cannot allocate colormap entry, ..." warning can never be
          emitted.
Solution: Remove the struct member and the unreachable branch.  The E458
          error definition is removed. Update the example error code
          "E458" in the ex_eval.c comment to "E457" accordingly.

closes: #20007

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2 hours agopatch 9.2.0378: Using int as bool type in win_T struct v9.2.0378
Hirohito Higashi [Mon, 20 Apr 2026 17:12:29 +0000 (17:12 +0000)] 
patch 9.2.0378: Using int as bool type in win_T struct

Problem:  Several win_T fields are declared as "int" or "char" but are
          used strictly as boolean flags with TRUE/FALSE values.  The
          integer types obscure the boolean intent and are wider than
          needed.
Solution: Change the following win_T members to bool (stdbool.h) and
          update their assignments from TRUE/FALSE to true/false
          accordingly.

The following conversions have been done:
- int -> bool (10 members):
  w_set_curswant, w_botfill, w_old_botfill, w_do_win_fix_cursor,
  w_popup_fixed, w_border_highlight_isset, w_cline_folded,
  w_redr_status, w_arg_idx_invalid, w_has_scrollbar
- char -> bool (4 members):
  w_topline_was_set, w_ru_empty, w_fold_manual, w_foldinvalid

No existing code compares these members against TRUE/FALSE explicitly or
uses ++/-- / bitwise ops on them, so only plain assignments are
affected.

Excluded:
- w_locked (recursion counter with ++/--),
- w_want_scrollbar (may hold -1 from dict_get_bool),
- w_winbar_height (used in arithmetic and exposed as number via
  getwininfo()).

related: #20005
closes:  #20008

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 hours agopatch 9.2.0377: Using int as bool type in gui_T struct v9.2.0377
Hirohito Higashi [Mon, 20 Apr 2026 16:33:57 +0000 (16:33 +0000)] 
patch 9.2.0377: Using int as bool type in gui_T struct

Problem:  Several gui_T fields are declared as "int" or "char" but are
          used strictly as boolean flags with TRUE/FALSE values.  The
          integer types obscure the boolean intent and are wider than
          needed.
Solution: Change the following gui_T members to bool (stdbool.h) and
          update their assignments from TRUE/FALSE to true/false
          accordingly (Hirohito Higashi)

The following conversions have been done:
- int -> bool (11 members):
  in_focus, in_use, starting, dying, dofork, dospawn,
  pointer_hidden, force_redraw, directx_enabled, font_can_bold,
  which_scrollbars[3]
- char -> bool (2 members):
  cursor_is_valid, menu_is_active

No existing code compares these members against TRUE/FALSE explicitly
(e.g. "== TRUE"), so only plain assignments are affected.

gui_init() used counter-style "--gui.starting" / "++gui.starting" to
temporarily clear the flag across a call to gui_mch_enable_menu().
With gui.starting now bool this triggers -Werror=bool-operation, so
replace it with an explicit save/restore.

X11 Bool members (rsrc_rev_video, color_approx) are intentionally left
unchanged: rsrc_rev_video is registered as an X Toolkit resource with
XtRBool / sizeof(Bool) and must keep the int-sized X11 Bool type.

closes: #20005

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 hours agopatch 9.2.0376: Vim9: elseif condition compiled in dead branch v9.2.0376
Furkan Sahin [Mon, 20 Apr 2026 16:22:50 +0000 (16:22 +0000)] 
patch 9.2.0376: Vim9: elseif condition compiled in dead branch

Problem:  When an `if` condition is constant true, the `else` block is
          skipped during compilation. However, any `elseif` condition
          within that skipped block was still compiled. This caused
          errors when the condition referenced variables only declared
          in the skipped block or when it checked for missing features
          (like `has('clipboard')`) (Coacher)
Solution: In compile_elseif(), when scope->se_skip_save is
          already SKIP_YES, skip compiling the elseif condition
          expression using skip_expr_cctx() (Furkan Sahin)

fixes:  #19160
closes: #20021

Signed-off-by: Furkan Sahin <furkan-dev@proton.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 hours agopatch 9.2.0375: prop_find() does not find a virt text in starting line v9.2.0375
Furkan Sahin [Mon, 20 Apr 2026 16:12:54 +0000 (16:12 +0000)] 
patch 9.2.0375: prop_find() does not find a virt text in starting line

Problem:  prop_find() does not find a virt text in the starting line
          (@rickhowe, after v9.2.0320)
Solution: Do not skip virtual text properties with tp_col == MAXCOL on
          the starting line (Furkan Sahin)

The column matching logic incorrectly skipped virtual text properties
with tp_col == MAXCOL on the starting line.  Exclude such properties
from the column range check so they are always found.

fixes:  #20013
closes: #20019

Signed-off-by: Furkan Sahin <furkan-dev@proton.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 hours agopatch 9.2.0374: c_CTRL-{G,T} does not handle offset v9.2.0374
Barrett Ruth [Mon, 20 Apr 2026 16:05:43 +0000 (16:05 +0000)] 
patch 9.2.0374: c_CTRL-{G,T} does not handle offset

Problem:  c_CTRL-{G,T} does not handle offset, when cycling between
          matches
Solution: Refactor parsing logic into parse_search_pattern_offset() and
          handle offsets, note: highlighting does not handle offsets
          yet (Barrett Ruth).

fixes:  #19991
closes: #19998

Signed-off-by: Barrett Ruth <br.barrettruth@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 hours agopatch 9.2.0373: Ctrl-R mapping not triggered during completion v9.2.0373
zeertzjq [Mon, 20 Apr 2026 15:43:56 +0000 (15:43 +0000)] 
patch 9.2.0373: Ctrl-R mapping not triggered during completion

Problem:  Ctrl-R mapping not triggered during completion.
Solution: Move Ctrl-R check out of vim_is_ctrl_x_key()
          (zeertzjq).

fixes:  #20004
closes: #20006

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 hours agopatch 9.2.0372: pum: rendering issues with multibyte text and opacity v9.2.0372
Yasuhiro Matsumoto [Mon, 20 Apr 2026 15:35:39 +0000 (15:35 +0000)] 
patch 9.2.0372: pum: rendering issues with multibyte text and opacity

Problem:  pum: rendering issues with multibyte text and opacity
Solution: Fix trailing-cell handling near popup text boundary,
          use popup attrs on opaque popup text,
          preserve right border when bg wide char spills,
          blend popup text bg with underlying bg,
          fix wide background char corruption
          (Yasuhiro Matsumoto)

closes: #20017

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 hours agoruntime: Remove wrong syn oneline keyword from a few syntax files
Eisuke Kawashima [Mon, 20 Apr 2026 15:14:31 +0000 (15:14 +0000)] 
runtime: Remove wrong syn oneline keyword from a few syntax files

Also:
- drop a few trailing whitespaces
- mark the oneline keyword for :syn keyword as error in the
  Vim syntax script, add tests for it.

closes: #20018

Signed-off-by: Eisuke Kawashima <e-kwsm@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 hours agopatch 9.2.0371: filetype: ghostty config files are not recognized v9.2.0371
Bez Hermoso [Mon, 20 Apr 2026 14:47:58 +0000 (14:47 +0000)] 
patch 9.2.0371: filetype: ghostty config files are not recognized

Problem:  filetype: ghostty config files are not recognized
Solution: Detect ghostty configuration files as ghostty filetype,
          include a simple ghostty filetype plugin (Bez Hermoso)

closes: #20002

Co-authored-by: Christian Brabandt <cb@256bit.org>
Signed-off-by: Bez Hermoso <me@bez.dev>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 hours agopatch 9.2.0370: duplicate code with literal string_T assignment v9.2.0370
Hirohito Higashi [Mon, 20 Apr 2026 14:43:52 +0000 (14:43 +0000)] 
patch 9.2.0370: duplicate code with literal string_T assignment

Problem:  Duplicate code with literal string_T assignment
Solution: Add STR_LITERAL_SET() macro for string_T literal assignment
          (Hirohito Higashi).

Previously, assigning a string literal to a string_T variable required
two lines that repeated the literal:

    s.string = (char_u *)"open";
    s.length = STRLEN_LITERAL("open");

Writing the literal twice is error-prone -- a typo in one of them
leaves the pointer and the cached length out of sync.

Add a STR_LITERAL_SET() macro in macros.h so that the assignment can
be written in one statement with the literal appearing only once:

    STR_LITERAL_SET(s, "open");

Replace all occurrences of the two-line pattern across the codebase
with the new macro.

No functional change.

related: #19999
related: #20023
closes:  #20025

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
21 hours agopatch 9.2.0369: multiple definitions of STRING_INIT macro v9.2.0369
Hirohito Higashi [Sun, 19 Apr 2026 21:51:51 +0000 (21:51 +0000)] 
patch 9.2.0369: multiple definitions of STRING_INIT macro

Problem:  multiple definitions of STRING_INIT macro
Solution: Refactor use of STRING_INIT and use a single
          STR_LITERAL_INIT() macro instead
          (Hirohito Higashi)

Consolidate the ad-hoc STRING_INIT() macros that were defined and used
locally in multiple source files. Define a single STR_LITERAL_INIT()
macro in macros.h and replace all previous STRING_INIT() usages with it.

No functional change.

related: #19999
closes:  #20023

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
22 hours agopatch 9.2.0368: too many strlen() calls when adding strings to dicts v9.2.0368
John Marriott [Sun, 19 Apr 2026 20:58:33 +0000 (20:58 +0000)] 
patch 9.2.0368: too many strlen() calls when adding strings to dicts

Problem:  too many strlen() calls when adding strings to dicts
Solution: Refactor code to use string_T, use dict_add_string_len()
          instead of dict_add_string() (John Marriott)

Additionally:
- In textprop.c, in function prop_fill_dict() use a string_T to store
  local variable text_align.
- In popupwin.c, use a string_T to store struct member pp_name in struct
  poppos_entry_T.
- In mark.c, refactor function add_mark() to pass in the length of
  argument mname.
- In insexpand.c:
  ->Use a string_T to store the elements of static array
    ctrl_x_mode_names.
  ->Refactor function trigger_complete_done_event():
  ->->change type of argument char_u *word to string_T *word.
  ->->make one access of array ctrl_x_mode_names instead of two.
  ->Refactor function ins_compl_mode() to accept a string_T to return the
    resulting string.
- In fileio.c:
  ->Refactor function getftypewfd() to accept a string_T to return the
    resulting string.
  ->In function create_readdirex_item() use a string_T to store local
    variable q.
- In cmdexpand.c, store global cmdline_orig as a string_T.
- In autocmd.c, in function f_autocmd_get() use a string_T to store local
  variables event_name and group_name. Measure their lengths once when
  they are assigned so they are not remeasured on each call to
  dict_add_string() in the subsequent for loop.
- In channel.c, in function channel_part_info() drop local variable status
  and use s instead. Make s a string_T.

closes: #19999

Signed-off-by: John Marriott <basilisk@internode.on.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
23 hours agopatch 9.2.0367: runtime(netrw): ~ note expanded on MS Windows v9.2.0367
Yasuhiro Matsumoto [Sun, 19 Apr 2026 20:38:35 +0000 (20:38 +0000)] 
patch 9.2.0367: runtime(netrw): ~ note expanded on MS Windows

Problem:  runtime(netrw): ~ note expanded on MS Windows
          (Tom Vamvanij)
Solution: Expand ~ on MS Windows (Yasuhiro Matsumoto)

On Windows, ":Explore ~" did nothing because the tilde expansion was
gated to Unix/Cygwin only.  Additionally, substitute() interprets
backslashes in the replacement string specially (e.g. \U as a case
modifier), which would corrupt $HOME values like C:\Users\name even
if the branch were taken.

Include has("win32") in the guard, anchor the pattern to the start of
the string, and escape backslashes, ampersands and tildes in $HOME
before substituting.

fixes:  #20003
closes: #20014

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
23 hours agopatch 9.2.0366: pum: flicker when updating pum in place v9.2.0366
Yasuhiro Matsumoto [Sun, 19 Apr 2026 20:21:37 +0000 (20:21 +0000)] 
patch 9.2.0366: pum: flicker when updating pum in place

Problem:  pum: flicker when updating pum in place
Solution: Skip update_screen() when the popup menu is redrawn
          at the same position (Yasuhiro Matsumoto).

closes: #20015

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
23 hours agopatch 9.2.0365: using int as bool v9.2.0365
Hirohito Higashi [Sun, 19 Apr 2026 20:10:20 +0000 (20:10 +0000)] 
patch 9.2.0365: using int as bool

Problem:  using int as bool
Solution: refactor: use bool type for internal flags in buf_T
          (Hirohito Higashi)

Change the type of 23 internal state flag fields in buf_T from int
to bool for improved type clarity and code readability.

These fields are pure boolean flags that are never accessed via the
option system's varp (which uses *(int *)varp = value), never compared
with int fields holding non-0/1 values, and never use tristate values.

Converted fields:
- State flags: b_dev_valid, b_saving, b_mod_set, b_new_change,
  b_marks_read, b_modified_was_set, b_did_filetype, b_keep_filetype,
  b_au_did_filetype, b_u_synced, b_scanned, b_p_initialized
- Characteristic flags: b_has_textprop, b_may_swap, b_did_warn,
  b_help, b_spell, b_shortname, b_has_sign_column, b_netbeans_file,
  b_was_netbeans_file, b_write_to_channel, b_diff_failed

All TRUE/FALSE assignments to these fields have been updated to
true/false accordingly. The type of temporary save variables
(e.g. help_save in tag.c) has also been adjusted to bool.

Option value fields (b_p_XXX) are kept as int because they are
accessed via the option system and some use tristate (-1) semantics.
Fields compared with int option values (b_start_eof, b_start_eol,
b_start_bomb) are also kept as int to preserve comparison integrity.

closes: #20020

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
23 hours agopatch 9.2.0364: tests: test_smoothscroll_textoff_showbreak() fails v9.2.0364
Christian Brabandt [Sun, 19 Apr 2026 19:58:56 +0000 (19:58 +0000)] 
patch 9.2.0364: tests: test_smoothscroll_textoff_showbreak() fails

Problem:  tests: test_smoothscroll_textoff_showbreak() fails
          (after v9.2.0363)
Solution: Add missing CheckRunVimInTerminal

related: #20011

Signed-off-by: Christian Brabandt <cb@256bit.org>
24 hours agopatch 9.2.0363: Vim9: variable shadowed by script-local function 20010/head v9.2.0363
Furkan Sahin [Sun, 19 Apr 2026 18:39:46 +0000 (18:39 +0000)] 
patch 9.2.0363: Vim9: variable shadowed by script-local function

Problem:  Vim9: variable shadowed by script-local function
          (Mao-Yining)
Solution: Set is_global flag to true in find_func() (Furkan Sahin)

fixes:  #20009
closes: #20011

Signed-off-by: Furkan Sahin <furkan-dev@proton.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
25 hours agopatch 9.2.0362: division by zero with smoothscroll and small windows v9.2.0362
Jaehwang Jung [Sun, 19 Apr 2026 18:32:55 +0000 (18:32 +0000)] 
patch 9.2.0362: division by zero with smoothscroll and small windows

Problem:  Resizing a smoothscrolled wrapped window to its textoff width
          with 'showbreak' can leave wrapped continuation lines with
          zero text width. win_lbr_chartabsize() still runs the partial max_head_vcol calculation in
          that state and divides by width2, crashing during redraw.
Solution: Skip that partial head calculation when the wrapped
          continuation width is zero, matching the other width2 guards
          in charset.c (Jaehwang Jung)

closes: #20012

AI-assisted: Codex

Signed-off-by: Jaehwang Jung <tomtomjhj@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoCI: Bump the github-actions group across 2 directories with 4 updates
dependabot[bot] [Fri, 17 Apr 2026 16:16:15 +0000 (16:16 +0000)] 
CI: Bump the github-actions group across 2 directories with 4 updates

Bumps the github-actions group with 3 updates in the / directory: [msys2/setup-msys2](https://github.com/msys2/setup-msys2), [actions/cache](https://github.com/actions/cache) and [github/codeql-action](https://github.com/github/codeql-action).
Bumps the github-actions group with 1 update in the /.github/actions/test_artifacts directory: [actions/github-script](https://github.com/actions/github-script).

Updates `msys2/setup-msys2` from 2 to 2.31.0
- [Release notes](https://github.com/msys2/setup-msys2/releases)
- [Changelog](https://github.com/msys2/setup-msys2/blob/main/CHANGELOG.md)
- [Commits](https://github.com/msys2/setup-msys2/compare/v2...v2.31.0)

Updates `actions/cache` from 5 to 5.0.4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5...v5.0.4)

Updates `github/codeql-action` from 4 to 4.35.1
- [Release notes](https://github.com/github/codeql-action/releases)
- [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/github/codeql-action/compare/v4...v4.35.1)

Updates `actions/github-script` from 8 to 9
- [Release notes](https://github.com/actions/github-script/releases)
- [Commits](https://github.com/actions/github-script/compare/v8...v9)

---
updated-dependencies:
- dependency-name: msys2/setup-msys2
  dependency-version: 2.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/cache
  dependency-version: 5.0.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: github-actions
- dependency-name: github/codeql-action
  dependency-version: 4.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: github-actions
- dependency-name: actions/github-script
  dependency-version: '9'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

closes: #20001

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agopatch 9.2.0361: tests: no tests for ch_listen() with IPs v9.2.0361
Zdenek Dohnal [Fri, 17 Apr 2026 15:55:53 +0000 (15:55 +0000)] 
patch 9.2.0361: tests: no tests for ch_listen() with IPs

Problem:  tests: no tests for ch_listen() with IPs
Solution: Add tests that this is disallowed
          (Zdenek Dohnal)

The functionality was removed, so the test is to make sure it fails
as expected.

closes: #19997

Signed-off-by: Zdenek Dohnal <zdohnal@redhat.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(vim9): remove extra escaping in Open
Keith Smiley [Fri, 17 Apr 2026 15:02:39 +0000 (15:02 +0000)] 
runtime(vim9): remove extra escaping in Open

Before 71fd19d7ac9e83bf63d7bad337f43cd830a5b5bd this function went
through a `:!` command on all platforms, so it needed special escaping for `#` and
others. After that commit it doesn't go through that path on unix
platforms. Then with 48581f2ba96550f5499cc322647b2ff1df5ad4ed this
escaping was re-added on unix and it's needs since it goes through
`sh -c`, but it should not have the extra escaping specific to `:!`.

Specifically my original broken command is:

```
PATH=/usr/bin:/bin VIMRUNTIME=~/dev/vim/runtime ./src/vim -u NONE -c 'call dist#vim9#Open("https://github.com/keith/dotfiles/blob/7bce9f5c697df6a549cf97bf5606d8b639e5bf5a/vimrc#L19")'
```

Where the `#L19` ends up being opened as `%5C#L19`. But I verified this
case still works as well:

```
PATH=/usr/bin:/bin VIMRUNTIME=~/dev/vim/runtime ./src/vim -u NONE -c 'call dist#vim9#Open("foo bar.txt")'
```

Which is what would otherwise break if we weren't doing any shell
escaping on unix.

closes: #19996

Signed-off-by: Keith Smiley <keithbsmiley@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(doc): make window option description a bit less vague
zeertzjq [Fri, 17 Apr 2026 14:51:53 +0000 (14:51 +0000)] 
runtime(doc): make window option description a bit less vague

Say explicitly that ":setlocal" sets the local value, while ":set" also
sets the global value.

related: #19993

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(django): Removed unsupported template statements and filters by current LTS.
tecis [Fri, 17 Apr 2026 14:47:22 +0000 (14:47 +0000)] 
runtime(django): Removed unsupported template statements and filters by current LTS.

Removed djangoStatement:

- ifequal: Depricated version 4.0.
- endifequal: Depricated version 4.0.
- ifnotequal: Depricated version 4.0.
- endifnotequal: Depricated version 4.0.
- parsed
- trans: Renamed to `translate` in version 4.0.
- blocktrans: Renamed to `blocktranslate` in version 4.0.
- endblocktrans: Renamed to `endblocktranslate` in version 4.0.

Removed djangoFilter:

- fix_ampersands: Removed in version 1.8.
- length_is: Removed in version 5.1.

sources:

- Current LTS is version [5.2](https://www.djangoproject.com/download/#supported-versions).
- Documentation template builtins [5.2](https://docs.djangoproject.com/en/5.2/ref/templates/builtins/#truncatechars-html).
- Documentation template builtins [6](https://docs.djangoproject.com/en/6.0/ref/templates/builtins).
- [Django Deprecation Timeline](https://docs.djangoproject.com/en/6.0/internals/deprecation)

closes: #19994

Signed-off-by: tecis <67809811+tecis@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(django): Add missing djangoStatement `get_language_info`.
tecis [Fri, 17 Apr 2026 14:46:01 +0000 (14:46 +0000)] 
runtime(django): Add missing djangoStatement `get_language_info`.

Source: [get_language_info](https://docs.djangoproject.com/en/6.0/topics/i18n/translation/#get-language-info) .

related: #19994

Signed-off-by: tecis <67809811+tecis@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(django): Add missing statements and filters.
tecis [Fri, 17 Apr 2026 14:44:51 +0000 (14:44 +0000)] 
runtime(django): Add missing statements and filters.

Added the fallowing.

djangoStatement:

- querystring: Added in version Django 5.2.
- lorem: Added in version Django 1.8.
- verbatim: Added in version Django 1.10.

djangoFilter:

- force_escape: Added in version Django 1.8.
- iriencode: Added in version Django 1.8.
- json_script: Added in version 2.1.
- truncatechars_html: Added in version 1.7.

> According to current documentation the added keywords are supported [Django version 6](https://docs.djangoproject.com/en/6.0/ref/templates/builtins).

related: #19994

Signed-off-by: tecis <67809811+tecis@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agoruntime(make): fix wrong highlighting with $ inside double quotes
Christian Brabandt [Thu, 16 Apr 2026 21:25:43 +0000 (21:25 +0000)] 
runtime(make): fix wrong highlighting with $ inside double quotes

fixes: #19986

Co-authored-by: Anton Khirnov <anton@khirnov.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agopatch 9.2.0360: Cannot handle mouse-clicks in the tabpanel v9.2.0360
Yasuhiro Matsumoto [Thu, 16 Apr 2026 20:29:33 +0000 (20:29 +0000)] 
patch 9.2.0360: Cannot handle mouse-clicks in the tabpanel

Problem:  Cannot handle mouse-clicks in the tabpanel
Solution: Add support using the %[FuncName] atom for the tabpanel
          (Yasuhiro Matsumoto)

Extend the statusline/tabline click region mechanism to work with
'tabpanel'. The callback receives a dict with "area" set to "tabpanel"
and a "tabnr" key indicating which tab page label was clicked.

closes: #19960

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agopatch 9.2.0359: wrong VertSplitNC highlighting on winbar v9.2.0359
Hirohito Higashi [Thu, 16 Apr 2026 20:12:08 +0000 (20:12 +0000)] 
patch 9.2.0359: wrong VertSplitNC highlighting on winbar

Problem:  wrong VertSplitNC highlighting on winbar
          (Maxim Kim, after v9.2.0349)
Solution: Use VertSplit instead of VertSplitNC for winbar rows
          (Hirohito Higashi).

vsep_row_is_curwin() and right_neighbor_at_row() used W_WINROW() which
excludes winbar rows from the window's range.  This caused the vertical
separator at winbar rows to use VertSplitNC even when curwin is adjacent.

Use w_winrow directly so winbar rows are included in the range check.

fixes:  #19985
closes: #19987

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
3 days agopatch 9.2.0358: runtime(vimball): still path traversal attacks possible v9.2.0358
Yasuhiro Matsumoto [Thu, 16 Apr 2026 20:03:39 +0000 (20:03 +0000)] 
patch 9.2.0358: runtime(vimball): still path traversal attacks possible

Problem:  runtime(vimball): still path traversal attacks possible
Solution: block Windows driver letter paths (Yasuhiro Matsumoto)

The path traversal check in vimball#Vimball() did not reject file
names starting with a Windows drive letter (e.g. "C:/foo"). Backslashes
are normalized to forward slashes earlier, so UNC paths are caught by
the leading-slash check, but absolute drive-letter paths slipped
through and could write outside of g:vimball_home on Windows.

Add a "^\a:" check next to the existing "^/" check, and cover it with
a new test.

closes: #19989

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 days agoruntime(gzip): Remove compatibility fall-backs, harden random filename generation
Yasuhiro Matsumoto [Thu, 16 Apr 2026 19:21:56 +0000 (19:21 +0000)] 
runtime(gzip): Remove compatibility fall-backs, harden random filename generation

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 days agoruntime(netrw): add missing escape() calls
Yasuhiro Matsumoto [Wed, 15 Apr 2026 20:46:19 +0000 (20:46 +0000)] 
runtime(netrw): add missing escape() calls

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
4 days agoruntime(tar): missing g:tar_secure in tar#Extract()
Christian Brabandt [Thu, 16 Apr 2026 12:28:18 +0000 (14:28 +0200)] 
runtime(tar): missing g:tar_secure in tar#Extract()

Signed-off-by: Christian Brabandt <cb@256bit.org>
4 days agopatch 9.2.0357: [security]: command injection via backticks in tag files v9.2.0357
Christian Brabandt [Wed, 15 Apr 2026 20:17:17 +0000 (20:17 +0000)] 
patch 9.2.0357: [security]: command injection via backticks in tag files

Problem:  [security]: command injection via backticks in tag files
          (Srinivas Piskala Ganesh Babu, Andy Ngo)
Solution: Disallow backticks before attempting to expand filenames.

Github Advisory:
https://github.com/vim/vim/security/advisories/GHSA-cwgx-gcj7-6qh8

Supported by AI

Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0356: Cannot apply 'scrolloff' context lines at end of file v9.2.0356
McAuley Penney [Wed, 15 Apr 2026 19:11:12 +0000 (19:11 +0000)] 
patch 9.2.0356: Cannot apply 'scrolloff' context lines at end of file

Problem:  Cannot apply 'scrolloff' context lines at end of file
Solution: Add the 'scrolloffpad' option to keep 'scrolloff' context even
          when at the end of the file (McAuley Penney).

closes: #19040

Signed-off-by: McAuley Penney <jacobmpenney@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0355: runtime(tar): missing path traversal checks in tar#Extract() v9.2.0355
q1uf3ng [Wed, 15 Apr 2026 18:20:55 +0000 (18:20 +0000)] 
patch 9.2.0355: runtime(tar): missing path traversal checks in tar#Extract()

Problem:  runtime(tar): missing path traversal checks in tar#Extract()
Solution: Add check for leading slash, however gnu tar should already
          detect this (q1uf3ng)

tar#Extract() did not check for ../ sequences or absolute paths,
unlike zip#Extract() which was patched in recent commits. Add the
same checks: ../ (relative traversal), leading slash (Unix), drive
letter and UNC/leading slash (Windows).

closes: #19981

Signed-off-by: q1uf3ng <q1uf3ng@protone.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0354: filetype: not all Bitbake include files are recognized v9.2.0354
Martin Schwan [Wed, 15 Apr 2026 18:08:32 +0000 (18:08 +0000)] 
patch 9.2.0354: filetype: not all Bitbake include files are recognized

Problem:  filetype: not all Bitbake include files are recognized
Solution: Enhance the file detection logic and consider varflags
          (Martin Schwan)

closes: #19983

Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agoruntime(bitbake): support forward-slashes in bitbake varflags
Martin Schwan [Wed, 15 Apr 2026 18:07:18 +0000 (18:07 +0000)] 
runtime(bitbake): support forward-slashes in bitbake varflags

Enable syntax highlighting for forward-slashes in Bitbake variables with
varflags. Bitbake allows for forward-slashes in both the variable name
and their potential varflags. E.g. the following should match:

    FOO_BAR[baz] = "foobar"
    FOO_BAR_foo/bar[baz] = "foobar"
    FOO_BAR_foo/bar[baz/bazzer] = "foobar"

Also allow plus-signs in variable names, to be in line with normal
variable names.

related: #19983

Signed-off-by: Martin Schwan <m.schwan@phytec.de>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0353: Missing out-of-memory check in register.c v9.2.0353
John Marriott [Wed, 15 Apr 2026 17:54:22 +0000 (17:54 +0000)] 
patch 9.2.0353: Missing out-of-memory check in register.c

Problem:  Missing out-of-memory check in register.c
Solution: Check for memory allocation failure and return NULL
          (John Marriott).

closes: #19949

Signed-off-by: John Marriott <basilisk@internode.on.net>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agoruntime(doc): Tweak documentation style in channel.txt
Hirohito Higashi [Wed, 15 Apr 2026 17:00:19 +0000 (17:00 +0000)] 
runtime(doc): Tweak documentation style in channel.txt

closes: #19978

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0352: 'winhighlight' of left window blends into right window v9.2.0352
Foxe Chen [Wed, 15 Apr 2026 16:52:09 +0000 (16:52 +0000)] 
patch 9.2.0352: 'winhighlight' of left window blends into right window

Problem: 'winhighlight' of left window blends into right window
Solution: Allow to push a NULL highlight override (Foxe Chen)

closes: #19980

Signed-off-by: Foxe Chen <chen.foxe@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agopatch 9.2.0351: repeat_string() can be improved v9.2.0351
Yasuhiro Matsumoto [Wed, 15 Apr 2026 04:12:55 +0000 (04:12 +0000)] 
patch 9.2.0351: repeat_string() can be improved

Problem:  repeat_string() can be improved
Solution: Replace the for() loop by an exponential growing while loop
          (Yasuhiro Matsumoto)

closes: #19977

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
5 days agoruntime(zip): also block single leading slash and absolute paths in Extract
q1uf3ng [Wed, 15 Apr 2026 04:03:02 +0000 (04:03 +0000)] 
runtime(zip): also block single leading slash and absolute paths in Extract

zip#Write(): the Windows path check did not match a single leading
slash (/path), which resolves to the current drive root on Windows.
Simplify the regex to match any leading slash or backslash.

zip#Extract(): add absolute path checks for both Unix and Windows,
matching the existing checks in zip#Write().

closes: #19976

Signed-off-by: q1uf3ng <glna9@protonmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0350: Enabling modelines poses a risk v9.2.0350
Christian Brabandt [Tue, 14 Apr 2026 18:51:54 +0000 (18:51 +0000)] 
patch 9.2.0350: Enabling modelines poses a risk

Problem:  Enabling modelines poses a risk, cannot whitelist specific
          modelines
Solution: Include the 'modelinestrict' option, enabled by default, that
          allows only a few very specific modelines, all others will be
          ignored

When set (which it is by default), only the following settings will be
applied, all others will be ignored:

  'autoindent'
  'cindent'
  'commentstring'
  'expandtab'
  'filetype'
  'foldcolumn'
  'foldenable'
  'foldmethod'
  'modifiable'
  'readonly'
  'rightleft'
  'shiftwidth'
  'smartindent'
  'softtabstop'
  'spell'
  'spelllang'
  'tabstop'
  'textwidth'
  'varsofttabstop'
  'vartabstop'

Supported by AI

closes: #19875

Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0349: cannot style non-current window separator v9.2.0349
Hirohito Higashi [Tue, 14 Apr 2026 18:39:52 +0000 (18:39 +0000)] 
patch 9.2.0349: cannot style non-current window separator

Problem:  cannot style non-current window separator
Solution: Add the VertSplitNC highlighting group
          (Hirohito Higashi).

Add VertSplitNC highlight group for vertical separators of non-current
windows, similar to StatusLine/StatusLineNC distinction.  The separator
adjacent to the current window uses VertSplit, others use VertSplitNC.
Default: linked to VertSplit.

At the current window's status line rows, the separator cell is drawn as
a space with the StatusLine highlight so it blends into the status line
without a stray fillchar glyph.

Also:
- :redrawstatus[!] now also redraws vertical separators.
- statusline height changes trigger vsep redraw.

closes: #19951

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0348: potential buffer underrun when setting statusline like option v9.2.0348
Christian Brabandt [Tue, 14 Apr 2026 18:18:36 +0000 (18:18 +0000)] 
patch 9.2.0348: potential buffer underrun when setting statusline like option

Problem:  potential buffer underrun when settings statusline like option
          (q1uf3ng)
Solution: Validate that p > out before accessing p[-1]

closes: #19961

Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agoCI: Separate out ASan tests
Ozaki Kiichi [Tue, 14 Apr 2026 18:13:32 +0000 (18:13 +0000)] 
CI: Separate out ASan tests

closes: #19962

Signed-off-by: Ozaki Kiichi <gclient.gaap@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0347: Vim9: script-local variable not found v9.2.0347
Yegappan Lakshmanan [Tue, 14 Apr 2026 17:02:21 +0000 (17:02 +0000)] 
patch 9.2.0347: Vim9: script-local variable not found

Problem:  Vim9: script-local variable not found after function call
          (Mao-Yining)
Solution: Accept a script local variable in a function which overrides a
          previous block-scope variable (Yegappan Lakshmanan)

fixes:  #19959
closes: #19963

Signed-off-by: Yegappan Lakshmanan <yegappan@yahoo.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0346: Wrong cursor position when entering command line window v9.2.0346
Hirohito Higashi [Tue, 14 Apr 2026 16:56:03 +0000 (16:56 +0000)] 
patch 9.2.0346: Wrong cursor position when entering command line window

Problem:  Wrong cursor position when entering command line window
Solution: Add check_cursor() command to verify the cursor position
          (Hirohito Higashi).

When opening the command-line window with CTRL-F after typing a command
that fills the screen width, the cursor was placed past the end of the
line.  Add check_cursor() after setting State to MODE_NORMAL so the
cursor is adjusted to the last character.

Also fix the cmdwin prefix character (e.g. ':') being drawn on wrapped
continuation rows.  Draw an empty space instead so that the text
alignment is preserved.

closes: #19964

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0345: Wrong autoformatting with 'autocomplete' v9.2.0345
zeertzjq [Tue, 14 Apr 2026 16:48:55 +0000 (16:48 +0000)] 
patch 9.2.0345: Wrong autoformatting with 'autocomplete'

Problem:  Wrong autoformatting with 'autocomplete'.
Solution: Don't trigger autoformatting when ending autocompletion
          without selecting an item (zeertzjq).

fixes:  #19954
closes: #19970

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0344: channel: ch_listen() can bind to network interface v9.2.0344
Zdenek Dohnal [Tue, 14 Apr 2026 16:37:25 +0000 (16:37 +0000)] 
patch 9.2.0344: channel: ch_listen() can bind to network interface

Problem:  channel: ch_listen() can bind to network interface
Solution: Only allow to use Unix domain sockets or localhost interface
          (Zdenek Dohnal)

related: #19231
related: #19799
closes:  #19973

Signed-off-by: Zdenek Dohnal <zdohnal@redhat.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agoruntime(doc): Tweak documentation style in options.txt
Hirohito Higashi [Tue, 14 Apr 2026 16:31:10 +0000 (16:31 +0000)] 
runtime(doc): Tweak documentation style in options.txt

closes: #19971

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0343: tests: test_clientserver may fail on slower systems v9.2.0343
James McCoy [Tue, 14 Apr 2026 16:25:50 +0000 (16:25 +0000)] 
patch 9.2.0343: tests: test_clientserver may fail on slower systems

Problem:  tests: test_clientserver may fail on slower systems
Solution: Wait for argc() before checking argv() (James McCoy).

On slower systems, the argv() check may run before the server has
populated the arg list.

Add a wait for argc() to be 3 to be more tolerant of such systems

closes: #19974

Signed-off-by: James McCoy <jamessan@jamessan.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0342: tests: test_excmd.vim leaves swapfiles behind v9.2.0342
Christian Brabandt [Tue, 14 Apr 2026 16:10:43 +0000 (16:10 +0000)] 
patch 9.2.0342: tests: test_excmd.vim leaves swapfiles behind

Problem:  tests: test_excmd.vim leaves swapfiles behind
Solution: Close open buffer using :bw!

related: #19975

Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agopatch 9.2.0341: some functions can be run from the sandbox v9.2.0341
q1uf3ng [Tue, 14 Apr 2026 15:58:40 +0000 (15:58 +0000)] 
patch 9.2.0341: some functions can be run from the sandbox

Problem:  some functions can be run from the sandbox
Solution: Block them, so they are not accessible from a modeline
          (q1uf3ng)

closes: #19975

Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: q1uf3ng <q1uf3ng@protone.me>
Signed-off-by: Christian Brabandt <cb@256bit.org>
6 days agoruntime(zip): Detect path traversal issues on Windows
Christian Brabandt [Tue, 14 Apr 2026 12:42:48 +0000 (14:42 +0200)] 
runtime(zip): Detect path traversal issues on Windows

Signed-off-by: Christian Brabandt <cb@256bit.org>
7 days agoRevert "runtime(jjdescription): allow to configure summary width"
Christian Brabandt [Mon, 13 Apr 2026 13:48:28 +0000 (15:48 +0200)] 
Revert "runtime(jjdescription): allow to configure summary width"

This reverts commit 86ae6858ababe1f80476368c617dc1812df5b781.

related: #19905

Signed-off-by: Christian Brabandt <cb@256bit.org>
8 days agopatch 9.2.0340: pum_redraw() may cause flicker v9.2.0340
Yasuhiro Matsumoto [Sun, 12 Apr 2026 16:24:09 +0000 (16:24 +0000)] 
patch 9.2.0340: pum_redraw() may cause flicker

Problem:  pum_redraw() may cause flicker
Solution: Wrap pum_redraw() in synchronized output to avoid flicker
          (Yasuhiro Matsumoto)

closes: #19955

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
8 days agoFix a few typos
Yasuhiro Matsumoto [Sun, 12 Apr 2026 16:19:36 +0000 (16:19 +0000)] 
Fix a few typos

closes: #19953

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
8 days agopatch 9.2.0339: regexp: nfa_regmatch() allocates and frees too often v9.2.0339
Yasuhiro Matsumoto [Sun, 12 Apr 2026 16:12:22 +0000 (16:12 +0000)] 
patch 9.2.0339: regexp: nfa_regmatch() allocates and frees too often

Problem:  nfa_regmatch() allocates and frees two list buffers on every
          call, causing unnecessary memory allocation overhead for
          frequently used patterns.
Solution: Cache the list buffers in the regprog struct and reuse them
          on subsequent top-level calls. Recursive calls still allocate
          their own buffers. Free cached buffers in nfa_regfree()
          (Yasuhiro Matsumoto).

Benchmark: 10K lines, `:%s` x50 iterations

| Pattern | Before | After | Improvement |
|---|---|---|---|
| `\<\(\w\+\%(ing\|tion\|ed\|ly\)\|\w\{3,}\)\>` (many matches) | 4.384s | 4.299s | -2% |
| `\(foo\|bar\|baz\)\{3,}\(qux\|quux\|corge\)\{2,}...` (no match, high nstate) | 16.927s | 3.015s | -82% |

closes: #19956

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agoruntime(jjdescription): allow to configure summary width
Emilia [Sat, 11 Apr 2026 15:34:53 +0000 (15:34 +0000)] 
runtime(jjdescription): allow to configure summary width

Allow to configure max length for the summary line and fall back to gits
setting.

closes: #19905

Signed-off-by: Emilia <emilia@bewitching.dev>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agopatch 9.2.0338: Cannot handle mouseclicks in the tabline v9.2.0338
Yasuhiro Matsumoto [Sat, 11 Apr 2026 15:22:24 +0000 (15:22 +0000)] 
patch 9.2.0338: Cannot handle mouseclicks in the tabline

Problem:  Cannot handle mouseclicks in the tabline
Solution: Support %[FuncName] click regions in 'tabline', add "area" key
          to the click info dict (Yasuhiro Matsumoto).

The previous implementation resolved and stored click regions only for
per-window statuslines; the tabline path in win_redr_custom() (wp==NULL)
parsed %[FuncName] but discarded the regions, and tabline clicks were
dispatched via TabPageIdxs[] which didn't know about them.

Add a global tabline_stl_click array populated from the tabline path,
refactor stl_click_handler() to take the regions directly, and dispatch
matching clicks from do_mouse() before falling through to tab selection.
The winid entry in the callback dict is 0 for tabline clicks.

related: #19841
closes:  #19950

Supported by AI.

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agopatch 9.2.0337: list indexing broken on big-endian 32-bit platforms v9.2.0337
James McCoy [Sat, 11 Apr 2026 15:00:50 +0000 (15:00 +0000)] 
patch 9.2.0337: list indexing broken on big-endian 32-bit platforms

Problem:  check_range_index_one() expects a long * but n1 is a
          varnumber_T. Casting varnumber_T * to long * is undefined
          behaviour and reads the wrong bytes on big-endian platforms
          (John Paul Adrian Glaubitz)
Solution: Use a local long variable and pass that pointer to
          check_range_index_one() (James McCoy)

fixes:  #19798
closes: #19952

Signed-off-by: James McCoy <jamessan@jamessan.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agoruntime(hlyank): verify winid in lambda before matchdelete()
Christian Brabandt [Sat, 11 Apr 2026 14:53:48 +0000 (14:53 +0000)] 
runtime(hlyank): verify winid in lambda before matchdelete()

Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agopatch 9.2.0336: libvterm: no terminal reflow support v9.2.0336
Cimbali [Fri, 10 Apr 2026 22:02:09 +0000 (22:02 +0000)] 
patch 9.2.0336: libvterm: no terminal reflow support

Problem:  libvterm: no terminal reflow support
Solution: Support for reflowing, sync libvterm to revision 843
          (Cimbali)

fixes:  #2865
closes: #8365
closes: #19863

Co-authored-by: Paul "LeoNerd" Evans <leonerd@leonerd.org.uk>
Signed-off-by: Cimbali <me@cimba.li>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agopatch 9.2.0335: json_encode() uses recursive algorithm v9.2.0335
Yasuhiro Matsumoto [Fri, 10 Apr 2026 21:37:44 +0000 (21:37 +0000)] 
patch 9.2.0335: json_encode() uses recursive algorithm

Problem:  json_encode() uses recursive algorithm
Solution: Convert from recursive to iterative algorithm to prevent
          stack overflow on deep recursive levels
          (Yasuhiro Matsumoto).

closes: #19839

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
9 days agopatch 9.2.0334: GTK: window geometry shrinks with with client-side decorations v9.2.0334
Gary Johnson [Fri, 10 Apr 2026 21:23:38 +0000 (21:23 +0000)] 
patch 9.2.0334: GTK: window geometry shrinks with with client-side decorations

Problem:  On GTK3 with client-side decorations the window opens with
          wrong &columns/&lines, and each :tabnew/:tabclose cycle
          shrinks the size further.
Solution: Measure and compensate for the CSD frame offset, discard
          spurious configure events from tabline show/hide
          (Gary Johnson).

closes: #19853

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: Gary Johnson <garyjohn@spocom.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0333: filetype: PklProject files are not recognized v9.2.0333
Nihaal Sangha [Fri, 10 Apr 2026 18:40:37 +0000 (18:40 +0000)] 
patch 9.2.0333: filetype: PklProject files are not recognized

Problem:  filetype: PklProject files are not recognized
Solution: Detect PklProject files as pkl filetype
          (Nihaal Sangha).

Reference:
https://pkl-lang.org/
https://github.com/apple/pkl
https://github.com/apple/pkl-pantry

closes: #19948

Signed-off-by: Nihaal Sangha <nihaal.git@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agoruntime(doc): Update documentation on statusline click handler
Christian Brabandt [Fri, 10 Apr 2026 18:37:25 +0000 (18:37 +0000)] 
runtime(doc): Update documentation on statusline click handler

related: #19841

Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0332: popup: still opacity rendering issues v9.2.0332
Yasuhiro Matsumoto [Fri, 10 Apr 2026 17:43:59 +0000 (17:43 +0000)] 
patch 9.2.0332: popup: still opacity rendering issues

Problem:  popup: still opacity rendering issues
Solution: Fix remaining issues, see below
          (Yasuhiro Matsumoto).

This PR fixes the following issues:

- Padding blend hole at wide char boundary: when a padding cell overlaps
  the second half of a wide character, the right half's attr value is
  unreliable. Use the left half's saved attr for blending instead.

- Wide char background split at popup boundary: when a wide character in
  an upper popup straddles the edge of a lower opacity popup, both
  halves got different background colors. Since terminals cannot render
  different left/right background colors for a wide character, detect
  the lower popup with popup_is_over_opacity() and use the non-popup
  side's underlying attr for both halves.

- Wrong blend color with cterm-only highlights under 'termguicolors':
  when a popup highlight has ctermbg but no guibg, bg_rgb is set to
  CTERMCOLOR (not INVALCOLOR). hl_blend_attr() used this value as a real
  RGB color, producing gray instead of the intended color. Use
  COLOR_INVALID() to detect both INVALCOLOR and CTERMCOLOR, and fall back
  to converting the cterm color number to RGB.

closes: #19943

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0331: spellfile: stack buffer overflows in spell file generation v9.2.0331
Christian Brabandt [Thu, 9 Apr 2026 22:27:36 +0000 (22:27 +0000)] 
patch 9.2.0331: spellfile: stack buffer overflows in spell file generation

Problem:  spell_read_aff() uses sprintf() into a fixed-size stack buffer
          without bounds checking. store_aff_word() uses STRCAT() to
          append attacker-controlled strings into newword[MAXWLEN] without
          checking remaining space. Both are reachable via :mkspell with
          crafted .aff/.dic files (xinyi234)
Solution: Replace sprintf() with vim_snprintf() in spell_read_aff().
          Replace STRCAT() with STRNCAT() with explicit remaining-space
          calculation in store_aff_word().

closes: #19944

Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0330: tests: some patterns in tar and zip plugin tests not strict enough v9.2.0330
zeertzjq [Thu, 9 Apr 2026 22:21:23 +0000 (22:21 +0000)] 
patch 9.2.0330: tests: some patterns in tar and zip plugin tests not strict enough

Problem:  Some patterns in tar and zip plugin tests not strict enough.
Solution: Use assert_equal() for lines that should match exactly. Match
          a literal dot properly (zeertzjq).

closes: #19946

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0329: tests: test_indent.vim leaves swapfiles behind v9.2.0329
Christian Brabandt [Thu, 9 Apr 2026 21:30:19 +0000 (21:30 +0000)] 
patch 9.2.0329: tests: test_indent.vim leaves swapfiles behind

Problem:  tests: test_indent.vim leaves swapfiles behind
Solution: Close open buffer using :bw! instead of :close!

Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0328: Cannot handle mouseclicks in the statusline v9.2.0328
Yasuhiro Matsumoto [Thu, 9 Apr 2026 21:15:30 +0000 (21:15 +0000)] 
patch 9.2.0328: Cannot handle mouseclicks in the statusline

Problem:  Cannot handle mouseclicks in the statusline
Solution: Add the %[FuncName] statusline item to define clickable
          regions with a callback function. (Yasuhiro Matsumoto)

closes: #19841

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
10 days agopatch 9.2.0327: filetype: uv scripts are not detected v9.2.0327
Christian Brabandt [Thu, 9 Apr 2026 20:50:01 +0000 (20:50 +0000)] 
patch 9.2.0327: filetype: uv scripts are not detected

Problem:  filetype: uv scripts are not detected
          (Asger Hautop Drewsen)
Solution: Detect uv scripts as python filetype if the shebang line
          contains "uv run"

Reference:
https://docs.astral.sh/uv/guides/scripts/#using-a-shebang-to-create-an-executable-file

fixes: #19941

Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(jjdescription): Add highlighting for 'Renamed' status lines
Joël Stemmer [Thu, 9 Apr 2026 19:32:15 +0000 (19:32 +0000)] 
runtime(jjdescription): Add highlighting for 'Renamed' status lines

`jj status` output uses the 'R' prefix for renamed files.

closes: #19879

Signed-off-by: Joël Stemmer <jstemmer@google.com>
Signed-off-by: Gregory Anders <greg@gpanders.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(jjdescription): Anchor status matches to start of line
Joël Stemmer [Thu, 9 Apr 2026 19:30:53 +0000 (19:30 +0000)] 
runtime(jjdescription): Anchor status matches to start of line

The regex for status line highlighting was too broad, `jjComment` lines
containing e.g. the letter 'A' followed by a space anywhere in the line
were highlighted.

related: #19879

Signed-off-by: Joël Stemmer <jstemmer@google.com>
Signed-off-by: Gregory Anders <greg@gpanders.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agopatch 9.2.0326: runtime(tar): but with dotted path v9.2.0326
Aaron Burrow [Thu, 9 Apr 2026 19:11:16 +0000 (19:11 +0000)] 
patch 9.2.0326: runtime(tar): but with dotted path

Problem:  runtime(tar): but with dotted path
Solution: Do not strip everything after the first dot
          (Aaron Burrow)

tar#Extract was getting the extensionless basename by
stripping away everything starting with the leftmost
dot.  So if a directory had a dot or the file had an
'extra' dot then the code did the wrong thing.  For
example, if it was given:

  /tmp/foo.bar/baz.tar.gz

Then it would treat /tmp/foo as the extensionless
basename, but it actually should have grabbed:

  /tmp/foo.bar/baz

This patch fixes the issue by instead looking at the
rightmost dot(s).

This bug was discovered by ChatGPT 5.4.  I wrote the
patch and tested vim.

closes: #19930

Signed-off-by: Aaron Burrow <burrows@fastmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agopatch 9.2.0325: runtime(tar): bug in zstd handling v9.2.0325
Aaron Burrow [Thu, 9 Apr 2026 19:06:13 +0000 (19:06 +0000)] 
patch 9.2.0325: runtime(tar): bug in zstd handling

Problem:  patch 9.2.0325: runtime(tar): bug in zstd handling
Solution: use correct --zstd argument, separated from other arguments,
          rework testing framework (Aaron Burrow).

The tar.vim plugin allows vim to read and manipulate zstd archives,
but it had a bug that caused extraction attempts to fail.
Specifically, if the archive has a .tar.zst or .tzst extension, then
the code was generating invalid extraction commands that looked like
this:

  tar --zstdpxf foo.tar.zst foo

When they should be like this:

  tar --zstd -pxf foo.tar.zst foo

This patch changes the flag manipulation logic so that --zstd isn't
glued to pxf.

The labor for this change was divided between ChatGPT 5.4 and me.
ChatGPT 5.4 identified the issue (from a code scan?), and I wrote
the patch and tested vim.

related: #19930

Signed-off-by: Aaron Burrow <burrows@fastmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agopatch 9.2.0324: 0x9b byte not unescaped in <Cmd> mapping v9.2.0324
zeertzjq [Thu, 9 Apr 2026 18:55:02 +0000 (18:55 +0000)] 
patch 9.2.0324: 0x9b byte not unescaped in <Cmd> mapping

Problem:  0x9b byte not unescaped in <Cmd> mapping (BenYip).
Solution: Translate K_CSI to CSI like what is done in vgetc().
          (zeertzjq).

fixes:  #19936
closes: #19937

Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(doc): Tweak documentation style a bit
Hirohito Higashi [Thu, 9 Apr 2026 18:49:43 +0000 (18:49 +0000)] 
runtime(doc): Tweak documentation style a bit

closes: #19939

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(org): Link to generic bold/Italic highlighting groups
Maxim Kim [Thu, 9 Apr 2026 18:41:47 +0000 (18:41 +0000)] 
runtime(org): Link to generic bold/Italic highlighting groups

fixes: #19933

Signed-off-by: Maxim Kim <habamax@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(help): support highlighting groups in translated syntax doc
Hirohito Higashi [Thu, 9 Apr 2026 18:38:35 +0000 (18:38 +0000)] 
runtime(help): support highlighting groups in translated syntax doc

closes: #19942

Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
11 days agoruntime(vimball): detect more path traversal attacks
Christian Brabandt [Thu, 9 Apr 2026 18:35:39 +0000 (18:35 +0000)] 
runtime(vimball): detect more path traversal attacks

Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0323: filetype: buf.lock files are not recognized v9.2.0323
Stefan VanBuren [Wed, 8 Apr 2026 18:28:08 +0000 (18:28 +0000)] 
patch 9.2.0323: filetype: buf.lock files are not recognized

Problem:  filetype: buf.lock files are not recognized
Solution: Detect buf.lock files as yaml filetype
          (Stefan VanBuren)

Reference:
https://buf.build/docs/configuration/v2/buf-lock/

closes: #19935

Signed-off-by: Stefan VanBuren <svanburen@buf.build>
Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0322: tests: test_popupwin fails v9.2.0322
Yasuhiro Matsumoto [Wed, 8 Apr 2026 18:18:53 +0000 (18:18 +0000)] 
patch 9.2.0322: tests: test_popupwin fails

Problem:  tests: test_popupwin fails (after v9.2.0319)
Solution: Regenerate the dump file (Yasuhiro Matsumoto).

The reference dump for Test_popupwin_opacity_wide_2 was not updated
when patch 9.2.0319 changed the blending behavior for double-width
characters at popup padding boundaries. The covered half of a
double-width character now correctly shows a space instead of the
full character.

related: #19881
closes:  #19934

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0321: MS-Windows: No OpenType font support v9.2.0321
Yasuhiro Matsumoto [Tue, 7 Apr 2026 21:07:46 +0000 (21:07 +0000)] 
patch 9.2.0321: MS-Windows: No OpenType font support

Problem:  MS-Windows: No OpenType font support
Solution: Allow specifying OpenType font features directly in 'guifont'
          (Yasuhiro Matsumoto).

Allow specifying OpenType font features directly in 'guifont' using
the ':f' option (e.g., :set guifont=Cascadia_Code:h14:fss19=1:fcalt=0).
Each ':fXXXX=N' sets a single OpenType feature tag with a parameter
value.  Multiple features can be specified by repeating the ':f' option.

This only takes effect when 'renderoptions' is set to use DirectWrite
(type:directx).  Default features (calt, liga, clig, rlig, kern) are
preserved unless explicitly overridden.

closes: #19857

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0320: several bugs with text properties v9.2.0320
Hirohito Higashi [Tue, 7 Apr 2026 20:46:10 +0000 (20:46 +0000)] 
patch 9.2.0320: several bugs with text properties

Problem:  several bugs with text properties
Solution: Fix the bugs, rework the text properties work

related: #19685
fixes:   #19680
fixes:   #19681
fixes:   #12568
fixes:   #19256
closes:  #19869

Co-Authored-By: Paul Ollis <paul@cleversheep.org>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Hirohito Higashi <h.east.727@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0319: popup: rendering issues with partially transparent popups v9.2.0319
Yasuhiro Matsumoto [Tue, 7 Apr 2026 20:26:17 +0000 (20:26 +0000)] 
patch 9.2.0319: popup: rendering issues with partially transparent popups

Problem:  popup: rendering issues with partially transparent popups.
Solution: Redraw the area under the old popup position on move or
          resize. Apply the background blend only to the covered half of
          a double-width character. (Yasuhiro Matsumoto)

closes: #19881

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
12 days agopatch 9.2.0318: cannot configure opacity for popup menu v9.2.0318
Yasuhiro Matsumoto [Tue, 7 Apr 2026 19:51:20 +0000 (19:51 +0000)] 
patch 9.2.0318: cannot configure opacity for popup menu

Problem:  cannot configure opacity for popup menu
Solution: Add the 'pumopt' option, consolidate existing pum options into
          the pumopt option (Yasuhiro Matsumoto)

closes: #19931

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
13 days agoruntime(doc): document gitcommit_summary_length
Christian Brabandt [Tue, 7 Apr 2026 19:37:14 +0000 (19:37 +0000)] 
runtime(doc): document gitcommit_summary_length

related: #19905

Signed-off-by: Christian Brabandt <cb@256bit.org>
13 days agoruntime(bitbake): Update syntax script
Antonin Godard [Tue, 7 Apr 2026 19:28:27 +0000 (19:28 +0000)] 
runtime(bitbake): Update syntax script

1) add syntax for include_all

The include_all directive was introduced in [1]. It uses the same syntax
as include or require, taking one or more paths as argument.

2) add syntax for inherit_defer

The inherit_defer directive was introduced in [2]. It uses the same syntax
as inherit, taking one or more class name as argument.

3) add syntax for addpylib

The addpylib directive was introduced in [3]. It uses a syntax similar
to addtask or addhandler, taking a directory and python namespace as
argument.

[1]: https://git.openembedded.org/bitbake/commit/?id=d01d5593e7829ac60f37bc23cb87dc6917026471
[2]: https://git.openembedded.org/bitbake/commit/?id=5c2e840eafeba1f0f754c226b87bfb674f7bea29
[3]: https://git.openembedded.org/bitbake/commit/?id=afb8478d3853f6edf3669b93588314627d617d6b

Signed-off-by: Antonin Godard <antonin@godard.cc>
Signed-off-by: Christian Brabandt <cb@256bit.org>
13 days agopatch 9.2.0317: listener functions do not check secure flag v9.2.0317
Christian Brabandt [Tue, 7 Apr 2026 18:57:04 +0000 (18:57 +0000)] 
patch 9.2.0317: listener functions do not check secure flag

Problem:  listener functions do not check secure flag
          (syndicate)
Solution: Call check_secure()

Signed-off-by: Christian Brabandt <cb@256bit.org>
13 days agopatch 9.2.0316: [security]: command injection in netbeans interface via defineAnnoType v9.2.0316
Christian Brabandt [Tue, 7 Apr 2026 17:32:02 +0000 (17:32 +0000)] 
patch 9.2.0316: [security]: command injection in netbeans interface via defineAnnoType

Problem:  [security]: The netbeans defineAnnoType command passes typeName, fg and bg
          unsanitized to coloncmd(), allowing a malicious server to inject
          arbitrary Ex commands via '|'. Similarly, specialKeys does not
          validate key tokens before building a map command.
Solution: Validate typeName, fg and bg against an allowlist of safe
          characters before passing them to coloncmd()

Github Advisory:
https://github.com/vim/vim/security/advisories/GHSA-mr87-rhgv-7pw6

Supported by AI

Signed-off-by: Christian Brabandt <cb@256bit.org>
2 weeks agoruntime(doc): clarify incsearch feature and typed chars
Christian Brabandt [Mon, 6 Apr 2026 14:01:20 +0000 (14:01 +0000)] 
runtime(doc): clarify incsearch feature and typed chars

fixes: #19886

Signed-off-by: Christian Brabandt <cb@256bit.org>
2 weeks agopatch 9.2.0315: missing bound-checks v9.2.0315
Yasuhiro Matsumoto [Mon, 6 Apr 2026 13:53:31 +0000 (13:53 +0000)] 
patch 9.2.0315: missing bound-checks

Problem:  missing bound-checks
Solution: Add defensive guards against potential buffer overflow
          (Yasuhiro Matsumoto)

Add bounds checking and integer overflow guards across multiple files
as a defensive measure. While these code paths are unlikely to be
exploitable in practice, the guards prevent undefined behavior in
edge cases.

- libvterm/vterm.c: use heap tmpbuffer instead of stack buffer in
  vsprintf() fallback path
- channel.c: validate len in channel_consume() before mch_memmove()
- spell.c: use long instead of int for addlen to avoid signed overflow
  in size_t subtraction
- alloc.c: add SIZE_MAX overflow check in ga_grow_inner() before
  itemsize multiplication
- list.c: add overflow check before count * sizeof(listitem_T)
- popupwin.c: add overflow check before width * height allocation
- insexpand.c: add overflow check before compl_num_bests multiplication
- regexp_bt.c: replace sprintf() with vim_snprintf() in regprop()
- spellfile.c: use SIZE_MAX instead of LONG_MAX for allocation overflow
  check

closes: #19904

Signed-off-by: Yasuhiro Matsumoto <mattn.jp@gmail.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
Signed-off-by: Christian Brabandt <cb@256bit.org>
2 weeks agopatch 9.2.0314: channel: can bind to all network interfaces v9.2.0314
Zdenek Dohnal [Mon, 6 Apr 2026 13:42:42 +0000 (13:42 +0000)] 
patch 9.2.0314: channel: can bind to all network interfaces

Problem:  channel: can bind to all network interfaces in ch_listen()
          (after v9.2.0153)
Solution: Restrict to a valid hostname, do not allow to bind on all
          network interfaces (Zdenek Dohnal).

This will prevent unintentional binding the process to public network
interfaces, and opening Vim to communication from outside network if
firewall allows it.

related: #19231
closes:  #19799

Signed-off-by: Zdenek Dohnal <zdohnal@redhat.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>