Mercurial > vim
view src/proto/if_tcl.pro @ 31984:479c93ad4a3b v9.0.1324
patch 9.0.1324: "gj" and "gk" do not move correctly over a closed fold
Commit: https://github.com/vim/vim/commit/441a7a94482f704b66253b8d08130f27b6b13736
Author: Luuk van Baal <luukvbaal@gmail.com>
Date: Sat Feb 18 20:15:44 2023 +0000
patch 9.0.1324: "gj" and "gk" do not move correctly over a closed fold
Problem: "gj" and "gk" do not move correctly over a closed fold.
Solution: Use the same code as used for "j"/"k" to go to the next/previous
line. (Luuk van Baal, closes #12007)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 18 Feb 2023 21:30:03 +0100 |
parents | f103da6ba95f |
children |
line wrap: on
line source
/* if_tcl.c */ void vim_tcl_init(char *arg); int tcl_enabled(int verbose); void vim_tcl_finalize(void); void tcl_end(void); void ex_tcl(exarg_T *eap); void ex_tclfile(exarg_T *eap); void ex_tcldo(exarg_T *eap); void tcl_buffer_free(buf_T *buf); void tcl_window_free(win_T *win); /* vim: set ft=c : */