summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-07-07 11:54:15 +0200
committerBram Moolenaar <Bram@vim.org>2017-07-07 11:54:15 +0200
commite4f25e4a8db2c8a8a71a4ba2a68540b3ab341e42 (patch)
tree5e48e171c0581f9a8240c95d4cde445e8b354ff2 /src/structs.h
parentda5116da4586fc714434411d2cccb066caa3723e (diff)
downloadvim-git-e4f25e4a8db2c8a8a71a4ba2a68540b3ab341e42.tar.gz
patch 8.0.0693: no terminal emulator supportv8.0.0693
Problem: No terminal emulator support. Cannot properly run commands in the GUI. Cannot run a job interactively with an ssh connection. Solution: Very early implementation of the :terminal command. Includes libvterm converted to ANSI C. Many parts still missing.
Diffstat (limited to 'src/structs.h')
-rw-r--r--src/structs.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/structs.h b/src/structs.h
index c7aa8f2eb..0fbc5a5bd 100644
--- a/src/structs.h
+++ b/src/structs.h
@@ -68,6 +68,7 @@ typedef struct wininfo_S wininfo_T;
typedef struct frame_S frame_T;
typedef int scid_T; /* script ID */
typedef struct file_buffer buf_T; /* forward declaration */
+typedef struct terminal_S term_T;
/*
* Reference to a buffer that stores the value of buf_free_count.
@@ -268,6 +269,10 @@ typedef struct
char_u *wo_scl;
# define w_p_scl w_onebuf_opt.wo_scl /* 'signcolumn' */
#endif
+#ifdef FEAT_TERMINAL
+ char_u *wo_tms;
+#define w_p_tms w_onebuf_opt.wo_tms /* 'termsize' */
+#endif
#ifdef FEAT_EVAL
int wo_scriptID[WV_COUNT]; /* SIDs for window-local options */
@@ -2351,6 +2356,11 @@ struct file_buffer
#endif
int b_mapped_ctrl_c; /* modes where CTRL-C is mapped */
+#ifdef FEAT_TERMINAL
+ term_T *b_term; /* When not NULL this buffer is for a terminal
+ * window. */
+#endif
+
}; /* file_buffer */