25

WeeChat normally sets the default nick to the user's username.

Is there any way to change this default behavior? I want to specify another nick.

nc4pk
  • 9,037
  • 14
  • 59
  • 71
moo
  • 1,047
  • 2
  • 10
  • 18

1 Answers1

36
/set irc.server_default.nicks comma,separated,list,of,nicks
/set irc.server.[SERVER_NAME].nicks "
moo
  • 1,047
  • 2
  • 10
  • 18
  • First line i understoood gives list of names that should be applied, what does second line do ? – Sumit Murari Sep 25 '19 at 02:14
  • It issues the command specified (/set irc.server.[SERVER_NAME].nicks, but change "[SERVER_NAME]" to any specific server name you want), and repeats (using the shorthand character ") all of the arguments ("comma, ...") from the immediately previous command. This is faster than having to type them all over again. – Royce Williams May 02 '20 at 14:57