@@ -7,11 +7,11 @@ You can build the client using :
77```
88 go build -o example_client
99```
10- and then run with (on unix for example):
10+ and then run with (on UNIX, for example):
1111```
1212 ./example_client
1313```
14- or you can simply build + run in one command while at the example directory root, like this:
14+ Alternatively, you can build and run in one command while at the example directory root, like this:
1515```
1616 go run xmpp_chat_client.go interface.go
1717```
@@ -24,7 +24,7 @@ To provide a different configuration file, pass the following argument to the ex
2424 go run xmpp_chat_client.go interface.go -c /path/to/config
2525```
2626where /path/to/config is the path to the directory containing the configuration file. The configuration file must be named
27- "config" and be using the yaml format.
27+ "config" and be using the YAML format.
2828
2929Required fields are :
3030``` yaml
@@ -36,16 +36,17 @@ Client : # This is you
3636
3737# Contacts list, ";" separated
3838Contacts : " testuser1@localhost;testuser3@localhost"
39- # Should we log stanzas ?
39+ # Should we log stanzas?
4040LogStanzas :
4141 - logger_on : " true"
4242 - logfile_path : " ./logs" # Path to directory, not file.
4343` ` `
4444
4545## How to use
46- Shortcuts :
47- - ctrl+space : switch between input window and menu window.
48- - While in input window :
49- - enter : sends a message if in message mode (see menu options)
50- - ctrl+e : sends a raw stanza when in raw mode (see menu options)
51- - ctrl+c : quit
46+
47+ Shortcuts:
48+ - ctrl+space: switch between input window and menu window.
49+ - While in the input window:
50+ - enter: sends a message if in message mode (see menu options)
51+ - ctrl+e: sends a raw stanza when in raw mode (see menu options)
52+ - ctrl+c: quit
0 commit comments