summary refs log tree commit diff
path: root/bin/1sh/libedit/map.h
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-11-01 04:17:24 -0400
committerJune McEnroe <june@causal.agency>2019-11-01 04:17:24 -0400
commite5821d8a5ecca68e90b69d311d8de8f2ff2e4980 (patch)
tree0669fed3e77428509c6727b0dc12d7d72f92f9e3 /bin/1sh/libedit/map.h
parentUse initial in git author (diff)
downloadsrc-e5821d8a5ecca68e90b69d311d8de8f2ff2e4980.tar.gz
src-e5821d8a5ecca68e90b69d311d8de8f2ff2e4980.zip
Add uber message
Diffstat (limited to '')
0 files changed, 0 insertions, 0 deletions
n> | I do not feel like documenting the 2-param form of /whois because it is weird, but it should work for those who already know about it. * Switch back to checking for server by nick with '.'June McEnroe2020-09-18 | | | | | | | | | | This fixes a bug where if you send a private message before joining any channels, your message will be routed to the <network> window. That happens because without a JOIN, self.user remains unset, which means that require will copy self.nick (set by echoMessage) to self.host. The easiest solution is to go back to checking for '.' and add a '.' to the default nick, so now if a server sends a NOTICE with no origin it will look like -*.*- which is kinda cute. * Copy style from wrapping pointJune McEnroe2020-09-11 | | | | | | This fixes a bug when wrapping on a word with style changes inside it, where the copied style would be different depending on the width of the terminal. * Silence set-but-unused warning 1.2June McEnroe2020-09-09 | | | | getyx is so annoying this way. * Include DEL in characters ncurses will print in ^A formJune McEnroe2020-09-08 | * Add blank line to unread if there are already unreadJune McEnroe2020-09-07 | | | | | This fixes the inconsistent M-u behaviour when catgirl is restarting and reconnecting to pounce, for example. * Call uiWrite to insert blank linesJune McEnroe2020-09-07 | | | | | It only used to use different code to avoid adding the blank line to the soft buffer. * Let wrapped lines use the last columnJune McEnroe2020-09-07 | * Handle non-alignment tabs in line wrappingJune McEnroe2020-09-06 | * Add C-r, C-s for basic scrollback searchJune McEnroe2020-09-06 | * Add M-n, M-p to jump to highlightsJune McEnroe2020-09-03 | * Fix M-u behaviour difference before and after reflowJune McEnroe2020-09-03 | * Recalculate unreadHard on reflow