summary refs log tree commit diff
path: root/.gitignore
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-08-11 22:46:28 -0400
committerJune McEnroe <june@causal.agency>2018-08-11 22:46:28 -0400
commit0dfeb3df84d5f8f3cbe5a2104b7bc1d9991dc2d0 (patch)
tree4520ccc15077c0560ab8354de0fecf31af54f08d /.gitignore
parentLeave room for topic when creating view (diff)
downloadcatgirl-0dfeb3df84d5f8f3cbe5a2104b7bc1d9991dc2d0.tar.gz
catgirl-0dfeb3df84d5f8f3cbe5a2104b7bc1d9991dc2d0.zip
Add shift-{left,right} for single-line scrolling
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
f6583cd779c17373&follow=1'>Add mailing list archive to READMEJune McEnroe 2021-06-17chat.tmux.conf: Make window selection hotkeys match window numbersKlemens Nanni The 'pick chat network' binding on F1 lists tmux windows as follows and tmux's `choose-tree -Z' lets you jump to the window by pressing the key denoted inside parantheses. Set `base-index 1' so as to make window indices match up the hotkey number instead of being off-by-one due to the session itself being the first entry in the list. (0) - chat-5: 8 windows (group chat: chat-0,chat-1,chat-2,chat-3,chat-4,chat-5,chat-6) (attached) (1) ├─> 1: hackint: "example.com" (2) ├─> 2: efnet: "example.com" ... PS: Update existing sessions by updating chat.tmux.conf, pressing F5 then running `prefix-: move-window -r' to renumber all windows. 2021-06-15Send PINGs when server is quiet and die if no responseJune McEnroe Every time we receive from the server, reset a timer. The first time the timer triggers, send a PING. The second time the timer triggers, die from ping timeout. I'm not sure about these two intervals: 2 minutes of idle before a PING, 30s for the server to respond to the PING. 2021-06-15OpenBSD: Simplify promise creation after seprintf() introductionKlemens Nanni Just truncate the initial promises back to the final ones after pledging for the first time, saving code and memory. Assign `ptr' in all initial `seprintf()' calls for consistency while here. 2021-06-14OpenBSD: pledge final promises earlierKlemens Nanni No need to wait for so long. This also brings all the pledge code on one screen and helps show how ircConnect() is the only relevant part in between initial and final promises. 2021-06-14Treat `-T's optional argument as optionalKlemens Nanni `-T[format]' is not possible with getopt(3) but getopt_long(3) supports "T::" exactly for that, so make the command line option go in line with configuration files and documentation. While here, check `has_arg' explicitly as getopt_long(3) only documents mnemonic values not numerical ones. 2021-06-14Add \com text macroJune McEnroe 2021-06-13/exec without controlling terminal