Mercurial > vim
annotate src/proto/sound.pro @ 30984:a82629ff46c8 v9.0.0827
patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
Commit: https://github.com/vim/vim/commit/1410d1841bfc4370dec1babe24c6664e06d7c9d9
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 1 22:04:40 2022 +0000
patch 9.0.0827: <Home> key in tmux doesn't work when 'term' set to "xterm"
Problem: The <Home> key in tmux doesn't work when 'term' is set to "xterm".
(Dominique Pell?)
Solution: Only use '@' in a termcap key entry for "1" when ";" follows.
(closes #11429)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Wed, 02 Nov 2022 11:18:58 +0100 |
parents | 71137f73c94d |
children |
rev | line source |
---|---|
17004
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 /* sound.c */ |
30719
71137f73c94d
patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
2 typedef struct soundcb_S soundcb_T; |
71137f73c94d
patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
3 |
17708
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17026
diff
changeset
|
4 int has_any_sound_callback(void); |
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17026
diff
changeset
|
5 int has_sound_callback_in_queue(void); |
30719
71137f73c94d
patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
6 void call_sound_callback(soundcb_T *soundcb, long sound_id, int result); |
71137f73c94d
patch 9.0.0694: no native sound support on Mac OS
Bram Moolenaar <Bram@vim.org>
parents:
17708
diff
changeset
|
7 void delete_sound_callback(soundcb_T *soundcb); |
17708
10696f279e20
patch 8.1.1851: crash when sound_playfile() callback plays sound
Bram Moolenaar <Bram@vim.org>
parents:
17026
diff
changeset
|
8 void invoke_sound_callback(void); |
17004
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 void f_sound_playevent(typval_T *argvars, typval_T *rettv); |
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 void f_sound_playfile(typval_T *argvars, typval_T *rettv); |
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 void f_sound_stop(typval_T *argvars, typval_T *rettv); |
17026
905e1b154058
patch 8.1.1513: all popup functionality is in functions, except :popupclear
Bram Moolenaar <Bram@vim.org>
parents:
17004
diff
changeset
|
12 void f_sound_clear(typval_T *argvars, typval_T *rettv); |
17004
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 void sound_free(void); |
353ed7ef78df
patch 8.1.1502: cannot play any sound
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
14 /* vim: set ft=c : */ |