Mercurial > vim
view src/proto/if_python.pro @ 28867:987d29ca36a5 v8.2.4956
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Commit: https://github.com/vim/vim/commit/395bd1f6d3edc9f7edb5d1f2d7deaf5a9e3ab93c
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 14 21:29:44 2022 +0100
patch 8.2.4956: reading past end of line with "gf" in Visual block mode
Problem: Reading past end of line with "gf" in Visual block mode.
Solution: Do not include the NUL in the length.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 14 May 2022 22:30:03 +0200 |
parents | 21b0a39d13ed |
children | a0b0c1e07064 |
line wrap: on
line source
/* if_python.c */ int python_enabled(int verbose); void python_end(void); int python_loaded(void); void ex_python(exarg_T *eap); void ex_pyfile(exarg_T *eap); void ex_pydo(exarg_T *eap); void python_buffer_free(buf_T *buf); void python_window_free(win_T *win); void python_tabpage_free(tabpage_T *tab); void do_pyeval(char_u *str, typval_T *rettv); int set_ref_in_python(int copyID); /* vim: set ft=c : */