aboutsummaryrefslogtreecommitdiff
path: root/elisp.h
diff options
context:
space:
mode:
authorLukas Fürmetz <fuermetz@mailbox.org>2018-10-25 22:42:00 +0200
committerLukas Fürmetz <fuermetz@mailbox.org>2018-10-25 22:42:00 +0200
commitfbe7a522e3a801176d2d6180507a8cbd99d639ef (patch)
tree8bc64a6704635b3c5059cc6c0f30c1d0188802c1 /elisp.h
parent3ab1aefab5704ca439919856cddb093b4de8f0b5 (diff)
Add support for cursor blinking
Diffstat (limited to 'elisp.h')
-rw-r--r--elisp.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/elisp.h b/elisp.h
index befc553..4906fab 100644
--- a/elisp.h
+++ b/elisp.h
@@ -36,6 +36,7 @@ emacs_value Fput_text_property;
emacs_value Fset;
emacs_value Fvterm_face_color_hex;
emacs_value Fvterm_flush_output;
+emacs_value Fblink_cursor_mode;
// Utils
void bind_function(emacs_env *env, const char *name, emacs_value Sfun);
@@ -55,6 +56,7 @@ void goto_char(emacs_env *env, int pos);
void forward_line(emacs_env *env, int n) ;
void goto_line(emacs_env *env, int n) ;
void toggle_cursor(emacs_env *env, bool visible);
+void toggle_cursor_blinking(emacs_env *env, bool visible);
void delete_lines(emacs_env *env ,int linenum,int count ,bool del_whole_line);
emacs_value get_hex_color_fg(emacs_env *env, emacs_value face);
emacs_value get_hex_color_bg(emacs_env *env, emacs_value face);