Mercurial > vim
view src/proto/main.pro @ 30821:a57e6da5860f v9.0.0745
patch 9.0.0745: wrong cursor position when using "gj" and "gk" in a long line
Commit: https://github.com/vim/vim/commit/4b6172e108fe06be47c09f8690dc54608be3ee80
Author: Bram Moolenaar <Bram@vim.org>
Date: Thu Oct 13 20:23:28 2022 +0100
patch 9.0.0745: wrong cursor position when using "gj" and "gk" in a long line
Problem: Wrong cursor position when using "gj" and "gk" in a long line.
Solution: Adjust computations for the cursor position and skipcol. Re-enable
tests that pass now, disable failing breakindent test.
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Thu, 13 Oct 2022 21:30:03 +0200 |
parents | 584231b9b37e |
children | ff4473b3fc58 |
line wrap: on
line source
/* main.c */ int vim_main2(void); void common_init(mparm_T *paramp); int is_not_a_term(void); int is_not_a_term_or_gui(void); char_u *get_gui_dialog_file(void); int op_pending(void); void may_trigger_safestate(int safe); void state_no_longer_safe(char *reason); int get_was_safe_state(void); void may_trigger_safestateagain(void); void main_loop(int cmdwin, int noexmode); void getout_preserve_modified(int exitval); void getout(int exitval); int process_env(char_u *env, int is_viminit); void mainerr_arg_missing(char_u *str); /* vim: set ft=c : */