Lines Matching refs:server

7 Vim client-server communication				*client-server*
17 server. It accepts messages from a client and executes them. At the same
18 time, Vim can function as a client and send commands to a Vim server.
26 there is no Vim server, execute locally.
40 server and the file is edited locally.
46 is no server.
61 --servername {name} Become the server {name}. When used together
63 server {name} instead of the default (see
66 --remote-send {keys} Send {keys} to server and exit. The {keys}
71 --remote-expr {expr} Evaluate {expr} in server and print the result
74 --serverlist Output a list of server names.
79 Edit "file.txt" in an already running GVIM server: >
82 Edit "file.txt" in an already running server called FOOBAR: >
85 Edit "file.txt" in server "FILES" if it exists, become server "FILES"
92 Edit file "+foo" in a remote server (note the use of "./" to avoid the special
96 Tell the remote server "BLA" to write all files and exit: >
100 SERVER NAME *client-server-name*
106 X-server. The resulting name is available in the servername builtin variable
107 |v:servername|. The case of the server name is ignored, thus "gvim" and
111 to locate the server name determined by the invocation name and --servername
113 server with the number postfix will be used. If a name with the number
116 If no server can be located and --remote or --remote-wait was used, Vim will
124 Win32 Note: Making the Vim server go to the foreground doesn't always work,
125 because MS-Windows doesn't allow it. The client will move the server to the
126 foreground when using the --remote or --remote-wait argument and the server
145 There are a number of Vim functions for scripting the command server. See
150 remote_startserver( name) run a server
151 remote_expr( server, string, idvar) send expression
152 remote_send( server, string, idvar) send key sequence
157 remote_foreground( server) bring server to the front
167 The communication between client and server goes through the X server. The
168 display of the Vim server must be specified. The usual protection of the X
169 server is used, you must be able to open a window on the X server for the
173 By default, a GUI Vim will register a name on the X-server by which it can be
177 When an X11 GUI Vim (gvim) is started, it will try to register a send-server
181 also act as a command server if a server name is explicitly given with the
185 An empty --servername argument will cause the command server to be disabled.
187 To send commands to a Vim server from another application, read the source
193 Every Win32 Vim can work as a server, also in the console. You do not need a
198 communicate with a Vim server. An alternative is using the OLE functionality