emacsclient.1 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. .\" See section COPYING for conditions for redistribution.
  2. .TH EMACSCLIENT 1
  3. .\" NAME should be all caps, SECTION should be 1-8, maybe w/ subsection
  4. .\" other parms are allowed: see man(7), man(1)
  5. .SH NAME
  6. emacsclient \- tells a running Emacs to visit a file
  7. .SH SYNOPSIS
  8. .B emacsclient
  9. .I "[options] files ..."
  10. .SH "DESCRIPTION"
  11. This manual page documents briefly the
  12. .BR emacsclient
  13. command. Full documentation is available in the GNU Info format; see
  14. below.
  15. This manual page was originally written for the Debian GNU/Linux
  16. distribution, but is not specific to that system.
  17. .PP
  18. .B emacsclient
  19. works in conjunction with the built-in Emacs server.
  20. .PP
  21. You can either call
  22. .B emacsclient
  23. directly or let other programs run it for you when necessary. On
  24. GNU and Unix systems many programs consult the environment
  25. variable EDITOR (sometimes also VISUAL) to obtain the command used for
  26. editing. Thus, setting this environment variable to 'emacsclient'
  27. will allow these programs to use an already running Emacs for editing.
  28. Other operating systems might have their own methods for defining the
  29. default editor.
  30. For
  31. .B emacsclient
  32. to work, you need an already running Emacs with a server. Within Emacs,
  33. call the functions `server-start' or `server-mode'. (Your `.emacs' file
  34. can do this automatically if you add either `(server-start)' or
  35. `(server-mode 1)' to it.)
  36. When you've finished editing the buffer, type `C-x #'
  37. (`server-edit'). This saves the file and sends a message back to the
  38. `emacsclient' program telling it to exit. The programs that use
  39. `EDITOR' wait for the "editor" (actually, `emacsclient') to exit. `C-x
  40. #' also checks for other pending external requests to edit various
  41. files, and selects the next such file.
  42. If you set the variable `server-window' to a window or a frame, `C-x
  43. #' displays the server buffer in that window or in that frame.
  44. .SH OPTIONS
  45. The programs follow the usual GNU command line syntax, with long
  46. options starting with two dashes (`-').
  47. .TP
  48. .B \-a, \-\-alternate-editor=EDITOR
  49. if the Emacs server is not running, run the specified editor instead.
  50. This can also be specified via the `ALTERNATE_EDITOR' environment variable.
  51. If the value of EDITOR is the empty string, run `emacs --daemon' to
  52. start Emacs in daemon mode, and try to connect to it.
  53. .TP
  54. .B -c, \-\-create-frame
  55. create a new frame instead of trying to use the current Emacs frame
  56. .TP
  57. .B \-F, \-\-frame-parameters=ALIST
  58. set the parameters of a newly-created frame.
  59. .TP
  60. .B \-d, \-\-display=DISPLAY
  61. tell the server to display the files on the given display.
  62. .TP
  63. .B \-e, \-\-eval
  64. do not visit files but instead evaluate the arguments as Emacs
  65. Lisp expressions.
  66. .TP
  67. .B \-f, \-\-server-file=FILENAME
  68. use TCP configuration file FILENAME for communication.
  69. This can also be specified via the `EMACS_SERVER_FILE' environment variable.
  70. .TP
  71. .B \-n, \-\-no-wait
  72. returns
  73. immediately without waiting for you to "finish" the buffer in Emacs.
  74. .TP
  75. .B \-nw, \-t, \-\-tty
  76. open a new Emacs frame on the current terminal
  77. .TP
  78. .B \-s, \-\-socket-name=FILENAME
  79. use socket named FILENAME for communication.
  80. .TP
  81. .B \-V, \-\-version
  82. print version information and exit
  83. .TP
  84. .B \-H, \-\-help
  85. print this usage information message and exit
  86. .SH "EXIT STATUS"
  87. Normally, the exit status is 0. If emacsclient shuts down due to
  88. Emacs signaling an error, the exit status is 1.
  89. .SH "SEE ALSO"
  90. The program is documented fully in
  91. .IR "Using Emacs as a Server"
  92. available via the Info system.
  93. .SH AUTHOR
  94. This manual page was written by Stephane Bortzmeyer <bortzmeyer@debian.org>,
  95. for the Debian GNU/Linux system (but may be used by others).
  96. .SH COPYING
  97. This manual page is in the public domain.