Mercurial > vim
view src/proto/netbeans.pro @ 34571:fdd232ab72ea v9.1.0184
patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap
Commit: https://github.com/vim/vim/commit/d0c1b7723f7e73763597af2f97a53d94ab7ed020
Author: zeertzjq <zeertzjq@outlook.com>
Date: Sat Mar 16 15:03:33 2024 +0100
patch 9.1.0184: Cursor pos wrong when clicking with conceal and wrap
Problem: Cursor position wrong when clicking with conceal and wrap.
Solution: Use the virtual column of the last char for ScreenCols[] in
boguscols. Remove use of MAXCOL in ScreenCols[]. Rename
third argument of wlv_screen_line() to "clear_end" as that's
clearer what it does (zeertzjq).
related: 14192
closes: #14200
Signed-off-by: zeertzjq <zeertzjq@outlook.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 16 Mar 2024 15:15:04 +0100 |
parents | 3a6b66c02d6d |
children |
line wrap: on
line source
/* netbeans.c */ void netbeans_parse_messages(void); int isNetbeansBuffer(buf_T *bufp); int isNetbeansModified(buf_T *bufp); void netbeans_end(void); void ex_nbclose(exarg_T *eap); void ex_nbkey(exarg_T *eap); void ex_nbstart(exarg_T *eap); void netbeans_beval_cb(BalloonEval *beval, int state); int netbeans_active(void); void netbeans_open(char *params, int doabort); void netbeans_send_disconnect(void); int set_ref_in_nb_channel(int copyID); void netbeans_frame_moved(int new_x, int new_y); void netbeans_file_activated(buf_T *bufp); void netbeans_file_opened(buf_T *bufp); void netbeans_file_killed(buf_T *bufp); void netbeans_inserted(buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen); void netbeans_removed(buf_T *bufp, linenr_T linenr, colnr_T col, long len); void netbeans_unmodified(buf_T *bufp); void netbeans_button_release(int button); int netbeans_keycommand(int key); void netbeans_save_buffer(buf_T *bufp); void netbeans_deleted_all_lines(buf_T *bufp); int netbeans_is_guarded(linenr_T top, linenr_T bot); void netbeans_draw_multisign_indicator(int row); void netbeans_gutter_click(linenr_T lnum); /* vim: set ft=c : */