Mercurial > vim
view src/proto/gui_gtk.pro @ 30751:9889ff80547e v9.0.0710
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Commit: https://github.com/vim/vim/commit/4282633ba63f6e11f2fe42c4b7758dace184f30d
Author: Yee Cheng Chin <ychin.git@gmail.com>
Date: Mon Oct 10 11:46:16 2022 +0100
patch 9.0.0710: quitting/unloading/hiding a terminal does not work properly
Problem: Quitting/unloading/hiding a terminal buffer does not always work
properly.
Solution: Avoid that ":q!" leaves an empty buffer behind. ":bunload!" also
kills the job and unloads the buffer. ":hide" does not unload the
buffer. (Yee Cheng Chin, closes #11323)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Mon, 10 Oct 2022 13:00:05 +0200 |
parents | fcccc29bd386 |
children |
line wrap: on
line source
/* gui_gtk.c */ void gui_gtk_register_stock_icons(void); void gui_mch_add_menu(vimmenu_T *menu, int idx); void gui_mch_add_menu_item(vimmenu_T *menu, int idx); void gui_mch_set_text_area_pos(int x, int y, int w, int h); void gui_gtk_set_mnemonics(int enable); void gui_mch_toggle_tearoffs(int enable); void gui_mch_menu_set_tip(vimmenu_T *menu); void gui_mch_destroy_menu(vimmenu_T *menu); void gui_mch_set_scrollbar_thumb(scrollbar_T *sb, long val, long size, long max); void gui_mch_set_scrollbar_pos(scrollbar_T *sb, int x, int y, int w, int h); int gui_mch_get_scrollbar_xpadding(void); int gui_mch_get_scrollbar_ypadding(void); void gui_mch_create_scrollbar(scrollbar_T *sb, int orient); void gui_mch_destroy_scrollbar(scrollbar_T *sb); char_u *gui_mch_browse(int saving, char_u *title, char_u *dflt, char_u *ext, char_u *initdir, char_u *filter); char_u *gui_mch_browsedir(char_u *title, char_u *initdir); int gui_mch_dialog(int type, char_u *title, char_u *message, char_u *buttons, int def_but, char_u *textfield, int ex_cmd); void gui_mch_show_popupmenu(vimmenu_T *menu); void gui_make_popup(char_u *path_name, int mouse_pos); void gui_mch_find_dialog(exarg_T *eap); void gui_mch_replace_dialog(exarg_T *eap); void ex_helpfind(exarg_T *eap); /* vim: set ft=c : */