-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Michael Czigler <contact@mcpcpc.com>
- Loading branch information
Showing
9 changed files
with
1,146 additions
and
1,016 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
# These are supported funding model platforms | ||
|
||
github: mcpcpc | ||
patreon: # Replace with a single Patreon username | ||
open_collective: # Replace with a single Open Collective username | ||
ko_fi: # Replace with a single Ko-fi username | ||
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel | ||
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry | ||
liberapay: # Replace with a single Liberapay username | ||
issuehunt: # Replace with a single IssueHunt username | ||
otechie: # Replace with a single Otechie username | ||
custom: https://www.paypal.me/mcpcpc/usd5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,3 @@ | ||
kirc | ||
*.a | ||
*.o | ||
*.txt | ||
tags | ||
*.out | ||
*.log | ||
*.diff | ||
.*.swp | ||
*.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# kirc | ||
|
||
kirc (KISS for IRC) is a tiny IRC client written in POSIX C99. | ||
|
||
## Installation | ||
|
||
Building and installing from source: | ||
|
||
git clone https://github.com/mcpcpc/kirc | ||
cd kirc | ||
make | ||
make install | ||
|
||
## Usage | ||
|
||
Consult `man kirc` for a full list and explanation of available arguments. | ||
|
||
kirc [-s hostname] [-p port] [-c channels] [-n nickname] [-r realname] | ||
[-u username] [-k password] [-a token] [-o logfile] [-e|x|v|V] | ||
|
||
## Command Aliases | ||
|
||
<message> send PRIVMSG to the current channel. | ||
@<channel|nick> <message> send PRIVMSG to a specified channel or nick. | ||
@@<channel|nick> <message> send CTCP ACTION message to a specified channel | ||
or nick (if no channel or nick is specified, the | ||
message will be sent to the default channel). | ||
/<command> send command to the IRC server (see RFC 2812). | ||
/#<channel> assign new default message channel. | ||
|
||
## Key Bindings | ||
|
||
CTRL+B or LEFT ARROW move the cursor one character to the left. | ||
CTRL+F or RIGHT ARROW move the cursor one character to the right. | ||
CTRL+P or UP ARROW move to previous record in the input history buffer. | ||
CTRL+N or DOWN ARROW move to next record in the input history buffer. | ||
CTRL+E move the cursor to the end of the line. | ||
CTRL+A or HOME move the cursor to the start of the line. | ||
CTRL+W delete the previous word. | ||
CTRL+U delete the entire line. | ||
CTRL+K delete the from current character to end of line. | ||
CTRL+D delete the character to the right of cursor. | ||
CTRL+C force quit kirc. | ||
CTRL+T swap character at cursor with previous character. | ||
CTRL+H equivalent to backspace. | ||
|
||
## Support Documentation | ||
|
||
Please refer to the [official homepage](http://kirc.io/docs.html) for examples, | ||
troubleshooting and use cases. | ||
|
||
## Contact | ||
|
||
For any further questions or concerns, feel free to send me an | ||
[email](michaelczigler[at]mcpcpc[dot]com). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.