mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-28 02:54:31 +03:00
64501bb43f
- when using -d option of nvim, it's important that the initial size of nvim corresponds to the NSWindow's size such that both splits have the same width
36 lines
1.0 KiB
Objective-C
36 lines
1.0 KiB
Objective-C
/**
|
|
* Tae Won Ha - http://taewon.de - @hataewon
|
|
* See LICENSE
|
|
*/
|
|
|
|
@import Foundation;
|
|
|
|
|
|
@class NeoVimServer;
|
|
|
|
extern NeoVimServer *_neovim_server;
|
|
extern CFRunLoopRef _mainRunLoop;
|
|
|
|
extern void start_neovim(NSInteger width, NSInteger height, NSArray<NSString *> *args);
|
|
extern void quit_neovim();
|
|
|
|
extern void neovim_select_window(void **argv);
|
|
extern void neovim_scroll(void **argv);
|
|
extern void neovim_tabs(void **argv);
|
|
extern void neovim_buffers(void **argv);
|
|
extern void neovim_vim_command_output(void **argv);
|
|
extern void neovim_set_bool_option(void **argv);
|
|
extern void neovim_get_bool_option(void **argv);
|
|
extern void neovim_escaped_filenames(void **argv);
|
|
extern void neovim_has_dirty_docs(void **argv);
|
|
extern void neovim_resize(void **argv);
|
|
extern void neovim_vim_command(void **argv);
|
|
|
|
extern void neovim_vim_input(void **argv);
|
|
extern void neovim_vim_input_marked_text(void **argv);
|
|
extern void neovim_delete(void **argv);
|
|
|
|
extern void neovim_pwd(void **argv);
|
|
|
|
extern void neovim_cursor_goto(void **argv);
|