mirror of
https://github.com/emacs-exwm/exwm.git
synced 2024-11-23 21:17:59 +01:00
; First line of docstring should be a full sentence
This commit is contained in:
parent
22aa38b0cd
commit
2e79830e39
3 changed files with 7 additions and 8 deletions
|
@ -35,13 +35,13 @@
|
||||||
:group 'exwm)
|
:group 'exwm)
|
||||||
|
|
||||||
(defcustom exwm-floating-setup-hook nil
|
(defcustom exwm-floating-setup-hook nil
|
||||||
"Normal hook run when an X window has been made floating, in the
|
"Normal hook run when an X window has been made floating.
|
||||||
context of the corresponding buffer."
|
This hook runs in the context of the corresponding buffer."
|
||||||
:type 'hook)
|
:type 'hook)
|
||||||
|
|
||||||
(defcustom exwm-floating-exit-hook nil
|
(defcustom exwm-floating-exit-hook nil
|
||||||
"Normal hook run when an X window has exited floating state, in the
|
"Normal hook run when an X window has exited floating state.
|
||||||
context of the corresponding buffer."
|
This hook runs in the context of the corresponding buffer."
|
||||||
:type 'hook)
|
:type 'hook)
|
||||||
|
|
||||||
(defcustom exwm-floating-border-color "navy"
|
(defcustom exwm-floating-border-color "navy"
|
||||||
|
|
|
@ -107,8 +107,7 @@ defined in `exwm-mode-map' here."
|
||||||
read-key-sequence-vector
|
read-key-sequence-vector
|
||||||
read-key-sequence
|
read-key-sequence
|
||||||
read-event)
|
read-event)
|
||||||
"Low-level functions that read events and need to be exempted from
|
"Low-level read functions that must be exempted from EXWM input handling.")
|
||||||
EXWM's input handling.")
|
|
||||||
|
|
||||||
(defvar exwm-input--during-command nil
|
(defvar exwm-input--during-command nil
|
||||||
"Indicate whether between `pre-command-hook' and `post-command-hook'.")
|
"Indicate whether between `pre-command-hook' and `post-command-hook'.")
|
||||||
|
|
4
exwm.el
4
exwm.el
|
@ -115,8 +115,8 @@
|
||||||
"Name of the subordinate Emacs server.")
|
"Name of the subordinate Emacs server.")
|
||||||
|
|
||||||
(defvar exwm--server-timeout 1
|
(defvar exwm--server-timeout 1
|
||||||
"Number of seconds to wait for the subordinate Emacs server to exit before
|
"Number of seconds to wait for the subordinate Emacs server to exit.
|
||||||
killing it.")
|
After this time, the server will be killed.")
|
||||||
|
|
||||||
(defvar exwm--server-process nil "Process of the subordinate Emacs server.")
|
(defvar exwm--server-process nil "Process of the subordinate Emacs server.")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue