summary refs log tree commit diff
AgeCommit message (Collapse)Author
2020-02-09Add /helpC. McEnroe
Now with automatic search! Also had to fix the SIGCHLD handling...
2020-02-09Add M-uC. McEnroe
2020-02-09Invert the direction of window->scrollC. McEnroe
2020-02-09Add The Scroll BarC. McEnroe
2020-02-09Implement scrolling!C. McEnroe
2020-02-09Add M-/C. McEnroe
2020-02-09Add M-aC. McEnroe
2020-02-09Add C-n and C-pC. McEnroe
2020-02-09Use iswspace for word movementC. McEnroe
2020-02-09Add C-yC. McEnroe
This is weechat's binding for it.
2020-02-09Add general key bindings paragraph to manualC. McEnroe
2020-02-09Add C-w and M-dC. McEnroe
2020-02-09Rename kill opsC. McEnroe
2020-02-09Add M-b and M-fC. McEnroe
2020-02-09Add C-kC. McEnroe
Also rename all the edit ops to something consistent.
2020-02-09Add C-dC. McEnroe
2020-02-09Add C-b and C-fC. McEnroe
2020-02-09Hook up tab-completeC. McEnroe
2020-02-09Add self.nick to completion in Network, not NoneC. McEnroe
2020-02-09Simplify edit buffer conversion and input renderingC. McEnroe
2020-02-09Show realname on JOIN if it is different from nickC. McEnroe
2020-02-09Switch to "other" window if closing active windowC. McEnroe
2020-02-08Use fmemopen to build colored mentions stringC. McEnroe
2020-02-08Use unexpected NAMES replies to populate completeC. McEnroe
2020-02-08Color mentionsC. McEnroe
Sort of like Textual does, but only in the first part of the messaage, either before a colon or before a space. Hopefully this makes it less costly than it would be, and prevents false positives on people with common nouns for nicks.
2020-02-08Trim whitespace from both ends of command paramsC. McEnroe
2020-02-08Add /copyC. McEnroe
2020-02-08Allow overriding the /open utilityC. McEnroe
2020-02-08Set FDs CLOEXECC. McEnroe
2020-02-08Implement URL openingC. McEnroe
2020-02-08Scan messages for URLsC. McEnroe
2020-02-08Add procPipe for subprocessesC. McEnroe
2020-02-08Handle SIGCHLDC. McEnroe
2020-02-08Check signals after file descriptorsC. McEnroe
If a signal happens while processing an FD, it should be handled immediately, rather than waiting for another poll return.
2020-02-08Simplify(?) reflow buffer loopC. McEnroe
2020-02-08Add /topicC. McEnroe
2020-02-08Add /namesC. McEnroe
2020-02-08Only show expected topic/names repliesC. McEnroe
2020-02-08Add /debugC. McEnroe
2020-02-08Add /closeC. McEnroe
2020-02-08Check return values of newwin/newpadC. McEnroe
2020-02-08Add /queryC. McEnroe
2020-02-08Add /partC. McEnroe
2020-02-08Handle ID overflowC. McEnroe
idk just shove it all in <network>.
2020-02-08Handle KICKC. McEnroe
See I knew the color cache in complete would be useful in at least one place!
2020-02-08Handle QUITC. McEnroe
2020-02-08Handle NAMES replyC. McEnroe
2020-02-08Add /nickC. McEnroe
2020-02-08Handle NICKC. McEnroe
2020-02-07Only treat the first tab as the alignment pointC. McEnroe