X-Git-Url: https://cgit.sxemacs.org/?p=riece;a=blobdiff_plain;f=lisp%2Friece-options.el;h=d694dba9df651cb1abca7e056906383e0fd60e68;hp=5d15c16998feb841efa17c5cc2f4f02037c8dbbc;hb=29ade235e5719301c2a1c59399e35ffcc6b74185;hpb=37bd1c399d1cd55e31ba31d7ecd1a8f5f0af9fe6 diff --git a/lisp/riece-options.el b/lisp/riece-options.el index 5d15c16..d694dba 100644 --- a/lisp/riece-options.el +++ b/lisp/riece-options.el @@ -39,7 +39,9 @@ (defcustom riece-saved-forms '(riece-server-alist riece-channel-buffer-mode + riece-others-buffer-mode riece-user-list-buffer-mode + riece-channel-list-buffer-mode riece-layout) "Variables saved after each session is completed." :type 'string @@ -116,7 +118,10 @@ way is to put Riece variables on .emacs or file loaded from there." riece-icon riece-ignore riece-log - riece-toolbar) + riece-toolbar + riece-alias + riece-ctlseq + riece-keyword) "Add-ons insinuated into Riece." :type '(repeat symbol) :group 'riece-options) @@ -201,12 +206,6 @@ way is to put Riece variables on .emacs or file loaded from there." :type 'string :group 'riece-server) -(defcustom riece-realname (or (getenv "IRCNAME") - user-full-name) - "Your real name." - :type 'string - :group 'riece-server) - (defcustom riece-nickname (or (getenv "IRCNICK") (user-real-login-name)) "Your nickname." @@ -245,6 +244,11 @@ way is to put Riece variables on .emacs or file loaded from there." :type 'boolean :group 'riece-looks) +(defcustom riece-others-buffer-mode t + "When non-nil, Riece will display an \"*Others*\" buffer." + :type 'boolean + :group 'riece-looks) + (defcustom riece-user-list-buffer-mode t "When non-nil, Riece will display a nick list buffer." :type 'boolean @@ -276,6 +280,12 @@ way is to put Riece variables on .emacs or file loaded from there." :type '(string :tag "Quit message") :group 'riece-options) +(defcustom riece-part-message nil + "Default part message." + :type '(choice (const :tag "No message" nil) + (string :tag "Part message")) + :group 'riece-options) + (defcustom riece-away-message "Gone" "Default away message." :type '(string :tag "Away message") @@ -286,7 +296,7 @@ way is to put Riece variables on .emacs or file loaded from there." :type 'boolean :group 'riece-options) -(defcustom riece-buffer-dispose-function #'bury-buffer +(defcustom riece-buffer-dispose-function #'kill-buffer "Function called after the buffer was disposed." :type 'function :group 'riece-options) @@ -296,7 +306,7 @@ way is to put Riece variables on .emacs or file loaded from there." :type 'integer :group 'riece-options) -(defcustom riece-max-buffer-size 65535 +(defcustom riece-max-buffer-size nil "Maximum size of channel buffers." :type '(radio (integer :tag "Number of characters") (const nil))