aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.h
diff options
context:
space:
mode:
authorCharlie Groves <charlie.groves@gmail.com>2022-02-16 17:11:50 -0500
committerCharlie Groves <charlie.groves@gmail.com>2022-03-11 11:16:46 -0500
commit5862176764c7a86d5fdd2685122810e14a3d5b02 (patch)
treea6780e13e4b157ecc9062f1b4e54a442098548ff /src/nvim/main.h
parent76769b8a1f5b34f4b0cef389597cec2796ca91b7 (diff)
downloadrneovim-5862176764c7a86d5fdd2685122810e14a3d5b02.tar.gz
rneovim-5862176764c7a86d5fdd2685122810e14a3d5b02.tar.bz2
rneovim-5862176764c7a86d5fdd2685122810e14a3d5b02.zip
feat(remote): add basic --remote support
This is starting from @geekodour's work at https://github.com/neovim/neovim/pull/8326
Diffstat (limited to 'src/nvim/main.h')
-rw-r--r--src/nvim/main.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/main.h b/src/nvim/main.h
index f73af5c288..e55bef6e33 100644
--- a/src/nvim/main.h
+++ b/src/nvim/main.h
@@ -39,6 +39,8 @@ typedef struct {
int diff_mode; // start with 'diff' set
char *listen_addr; // --listen {address}
+ int remote; // --remote-[subcmd] {file1} {file2}
+ char *server_addr; // --server {address}
} mparm_T;
#ifdef INCLUDE_GENERATED_DECLARATIONS