Mercurial > vim
view src/proto/netbeans.pro @ 7034:e668b160ac68 v7.4.830
commit https://github.com/vim/vim/commit/b341dda575899458f7075614dcedf0a80ee9d080
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Aug 25 12:56:31 2015 +0200
patch 7.4.830
Problem: Resetting 'encoding' when doing ":set all&" causes problems.
(Bjorn Linse) Display is not updated.
Solution: Do not reset 'encoding'. Do a full redraw.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 25 Aug 2015 17:20:25 +0200 |
parents | 0b3be97064e5 |
children | 21b0a39d13ed |
line wrap: on
line source
/* netbeans.c */ void netbeans_parse_messages __ARGS((void)); void netbeans_read __ARGS((void)); int isNetbeansBuffer __ARGS((buf_T *bufp)); int isNetbeansModified __ARGS((buf_T *bufp)); void netbeans_end __ARGS((void)); void ex_nbclose __ARGS((exarg_T *eap)); void ex_nbkey __ARGS((exarg_T *eap)); void ex_nbstart __ARGS((exarg_T *eap)); void netbeans_beval_cb __ARGS((BalloonEval *beval, int state)); int netbeans_active __ARGS((void)); int netbeans_filedesc __ARGS((void)); void netbeans_gui_register __ARGS((void)); void netbeans_open __ARGS((char *params, int doabort)); void netbeans_send_disconnect __ARGS((void)); void netbeans_frame_moved __ARGS((int new_x, int new_y)); void netbeans_file_activated __ARGS((buf_T *bufp)); void netbeans_file_opened __ARGS((buf_T *bufp)); void netbeans_file_killed __ARGS((buf_T *bufp)); void netbeans_inserted __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, char_u *txt, int newlen)); void netbeans_removed __ARGS((buf_T *bufp, linenr_T linenr, colnr_T col, long len)); void netbeans_unmodified __ARGS((buf_T *bufp)); void netbeans_button_release __ARGS((int button)); int netbeans_keycommand __ARGS((int key)); void netbeans_save_buffer __ARGS((buf_T *bufp)); void netbeans_deleted_all_lines __ARGS((buf_T *bufp)); int netbeans_is_guarded __ARGS((linenr_T top, linenr_T bot)); void netbeans_draw_multisign_indicator __ARGS((int row)); void netbeans_gutter_click __ARGS((linenr_T lnum)); /* vim: set ft=c : */