unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
blob 894d1a1783a57ac34e344aed4bc2ae4d3a0653fa 5808 bytes (raw)
name: doc/man/emacsclient.1 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
 
.\" See section COPYING for conditions for redistribution.
.TH EMACSCLIENT 1 "2023-10-16" "GNU Emacs" "GNU"
.\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
.\" other params are allowed: see man(7), man(1)
.SH NAME
emacsclient \- tells a running Emacs to visit a file
.SH SYNOPSIS
.B emacsclient
.I "[options] files ..."
.SH "DESCRIPTION"
This manual page documents briefly the
.BR emacsclient
command.  Full documentation is available in the GNU Info format; see
below.
.PP
.B emacsclient
works in conjunction with the built-in Emacs server.
.PP
You can either call
.B emacsclient
directly or let other programs run it for you when necessary.  On
GNU and Unix systems many programs consult the environment
variable EDITOR (sometimes also VISUAL) to obtain the command used for
editing.  Thus, setting this environment variable to 'emacsclient'
will allow these programs to use an already running Emacs for editing.
Other operating systems might have their own methods for defining the
default editor.

For
.B emacsclient
to work, you need an already running Emacs with a server.  Within Emacs,
call the functions "server-start" or "server-mode".  (Your ".emacs" file
can do this automatically if you add either "(server-start)" or
"(server-mode 1)" to it.)

When you've finished editing the buffer, type "C-x #"
("server-edit").  This saves the file and sends a message back to the
.B emacsclient
program telling it to exit.  The programs that use
EDITOR wait for the "editor" (actually,
.BR emacsclient )
to exit.  "C-x #" also checks for other pending external requests to
edit various
files, and selects the next such file.

If you set the variable "server-window" to a window or a frame, "C-x
#" displays the server buffer in that window or in that frame.

.SH OPTIONS
Most options follow the usual GNU command line syntax, with long
options starting with two dashes ("\-").
.TP
.BI + line\fR[\fP\fB:\fPcolumn\fR]\fP
Go to the specified
.I line
and
.IR column .
A missing
.I column
is treated as column 1.
This option applies only to the next file specified.
.TP
.B \-a, \-\-alternate-editor=COMMAND
If the Emacs server is not running, run the specified shell command instead.
This takes precedence over the ALTERNATE_EDITOR environment variable.
If the empty string is specified, run "emacs \-\-daemon" to
start Emacs in daemon mode, and try to connect to it.
.TP
.B -c, \-\-create-frame
Create a new frame instead of trying to use the current Emacs frame.
.TP
.B -r \-\-reuse-frame
Reuse an existing frame if one exists, otherwise create a new frame.
.TP
.B \-F, \-\-frame-parameters=ALIST
Set the parameters of a newly-created frame.
.TP
.B \-d, \-\-display=DISPLAY
Tell the server to display the files on the given display.
.TP
.B \-e, \-\-eval
Do not visit files but instead evaluate the arguments as Emacs
Lisp expressions.
.TP
.B \-f, \-\-server-file=FILENAME
Use TCP configuration file FILENAME for communication.
This takes precedence over the EMACS_SERVER_FILE environment variable.
Relative filenames are relative to "~/.emacs.d/server/", and the
default is "server".
.TP
.B \-n, \-\-no-wait
Return immediately without waiting for you to "finish" the buffer in
Emacs.  If combined with --eval, this option is ignored.
.TP
.B \-w, \-\-timeout=N
How long to wait, in seconds, for Emacs to respond before giving up.
The default is 0, which means to wait forever.
.TP
.B \-\-parent-id=ID
Open an
.B emacsclient
frame as a client frame in the parent X window with id ID.
.TP
.B \-q, \-\-quiet
Do not let
.B emacsclient
display messages about waiting for Emacs or connecting to remote
server sockets.
.TP
.B \-u, \-\-suppress-output
Do not let
.B emacsclient
display results returned from the server.  Mostly useful in
combination with --eval when the evaluation performed is for
side-effect rather than result.
.TP
.B \-s, \-\-socket-name=FILENAME
Use socket named FILENAME for communication.
This takes precedence over the EMACS_SOCKET_NAME environment variable.
.TP
.B \-nw, \-t, \-\-tty
Open a new Emacs frame on the current terminal.
.TP
.B \-T, \-\-tramp-prefix=PREFIX
Set PREFIX to add to filenames for Emacs to locate files on remote
machines using TRAMP.  This is mostly useful in combination with using
the Emacs server on a remote host (either using TCP with
--server-file, or a socket forwarded over SSH).  This takes precedence
over the EMACSCLIENT_TRAMP environment variable.
.TP
.B \-V, \-\-version
Print version information and exit.
.TP
.B \-H, \-\-help
Print this usage information message and exit.
.SH "EXIT STATUS"
Normally, the exit status is 0.  If emacsclient shuts down due to
Emacs signaling an error, the exit status is 1.
.SH ENVIRONMENT
.TP
.B ALTERNATE_EDITOR
If the Emacs server is not running, run the shell command in this
environment variable instead.  If set to the empty string, run
"emacs \-\-daemon" to start Emacs in daemon mode, and try to connect
to it.
.TP
.B EMACSCLIENT_TRAMP
A prefix to add to filenames, intended to allow Emacs to locate files
on remote machines using TRAMP.
.TP
.B EMACS_SERVER_FILE
Look in this file to discover where to find a TCP Emacs server.
Relative filenames are relative to "~/.emacs.d/server/", and the
default is "server".
.TP
.B EMACS_SOCKET_NAME
The filename of the socket to use for communication with the Emacs server.
.SH "SEE ALSO"
The program is documented fully in
.IR "Using Emacs as a Server"
available via the Info system.
.SH AUTHOR
This manual page was originally written by Stephane Bortzmeyer
<bortzmeyer@debian.org>, for the Debian GNU/Linux system, but is not
specific to that system.
.SH COPYING
This manual page is in the public domain.

.\" Local Variables:
.\" time-stamp-pattern: "3/.TH EMACSCLIENT 1 \"%Y-%02m-%02d\" \"GNU Emacs\" \"GNU\"$"
.\" End:

debug log:

solving 42312f24fb3 ...
found 42312f24fb3 in https://yhetil.org/emacs-bugs/a3fc7e77-06b9-8894-7ae1-1aa617ae8a41@mavit.org.uk/
found acc2edd4609 in https://git.savannah.gnu.org/cgit/emacs.git
preparing index
index prepared:
100644 acc2edd460922c9df028a1694c225e7fbb000c9b	doc/man/emacsclient.1

applying [1/1] https://yhetil.org/emacs-bugs/a3fc7e77-06b9-8894-7ae1-1aa617ae8a41@mavit.org.uk/
diff --git a/doc/man/emacsclient.1 b/doc/man/emacsclient.1\r
index acc2edd4609..42312f24fb3 100644\r

Checking patch doc/man/emacsclient.1...
Applied patch doc/man/emacsclient.1 cleanly.

index at:
100644 894d1a1783a57ac34e344aed4bc2ae4d3a0653fa	doc/man/emacsclient.1

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).