Mercurial > vim
view src/proto/os_amiga.pro @ 33480:f8dd278ab05f v9.0.1991
patch 9.0.1991: no cmdline completion for setting the font
Commit: https://github.com/vim/vim/commit/290b887e8cc2c0d3dfc7f315b2052472c7c589cc
Author: Yee Cheng Chin <ychin.git@gmail.com>
Date: Thu Oct 5 20:54:21 2023 +0200
patch 9.0.1991: no cmdline completion for setting the font
Problem: no cmdline completion for setting the font
Solution: enable it on Win32 and GTK builds
Add guifont cmdline completion (for Windows and GTK)
For Windows, auto-complete will only suggest monospace fonts as that's
the only types allowed. Will also suggest font options after the colon,
including suggesting the current font size for convenience, and misc
charset and quality options like `cANSI` and `qCLEARTYPE`.
For GTK, auto-complete will suggest only monospace fonts for `guifont`
but will include all fonts for `guifontwide`. The completion code
doesn't currently suggest the current font size, as the GTK guifont
format does not have a clear delimiter (':' for other platforms).
closes: #13264
Signed-off-by: Christian Brabandt <cb@256bit.org>
Co-authored-by: Yee Cheng Chin <ychin.git@gmail.com>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Thu, 05 Oct 2023 21:00:07 +0200 |
parents | 88070e222e82 |
children |
line wrap: on
line source
/* os_amiga.c */ void win_resize_on(void); void win_resize_off(void); void mch_write(char_u *p, int len); int mch_inchar(char_u *buf, int maxlen, long time, int tb_change_cnt); int mch_char_avail(void); long_u mch_avail_mem(int special); void mch_delay(long msec, int flags); void mch_suspend(void); void mch_init(void); int mch_check_win(int argc, char **argv); int mch_input_isatty(void); void fname_case(char_u *name, int len); void mch_settitle(char_u *title, char_u *icon); void mch_restore_title(int which); int mch_can_restore_title(void); int mch_can_restore_icon(void); void mch_setmouse(int on); int mch_get_user_name(char_u *s, int len); void mch_get_host_name(char_u *s, int len); long mch_get_pid(void); int mch_dirname(char_u *buf, int len); int mch_FullName(char_u *fname, char_u *buf, int len, int force); int mch_isFullName(char_u *fname); long mch_getperm(char_u *name); int mch_setperm(char_u *name, long perm); void mch_hide(char_u *name); int mch_isdir(char_u *name); int mch_mkdir(char_u *name); int mch_can_exe(char_u *name, char_u **path, int use_path); int mch_nodetype(char_u *name); void mch_early_init(void); void mch_exit(int r); void mch_settmode(tmode_T tmode); int mch_get_shellsize(void); void mch_set_shellsize(void); void mch_new_shellsize(void); int mch_call_shell(char_u *cmd, int options); void mch_breakcheck(int force); long Chk_Abort(void); int mch_expandpath(garray_T *gap, char_u *pat, int flags); int mch_has_exp_wildcard(char_u *p); int mch_has_wildcard(char_u *p); char_u *mch_getenv(char_u *var); int mch_setenv(char *var, char *value, int x); /* vim: set ft=c : */