about summary refs log tree commit diff
path: root/ui.c (follow)
Commit message (Collapse)AuthorAge
* Add C-u and move underline to C-_June McEnroe2019-10-03
|
* Add /move commandJune McEnroe2019-02-27
|
* Add M-/ to switch to previously active windowJune McEnroe2019-02-26
| | | | This is also a weechat binding.
* Move nick and tag coloring to color.cJune McEnroe2019-02-25
|
* Add M-l to list the logJune McEnroe2019-02-25
|
* Update tag colorsJune McEnroe2019-02-25
| | | | | | This kind of incurs a lot of writes usually for no reason. The only place this matters is when cold-opening a /query. I wonder if there's a better way to do that.
* Add color to tagsJune McEnroe2019-02-25
|
* Add M-a to switch to hot or unread windowJune McEnroe2019-02-25
|
* Refactor uiReadJune McEnroe2019-02-25
| | | | Centralizes the branching.
* Scroll by full pages with PageUp/PageDownJune McEnroe2019-02-24
|
* Add C-n and C-p key bindings to switch windowsJune McEnroe2019-02-23
|
* Call def_prog_mode after termNoFlowJune McEnroe2019-02-23
| | | | So that the settings get restored after /url or /man.
* Move IRC formatting reset to C-sJune McEnroe2019-02-22
| | | | Opens C-n for window switching.
* Disable terminal flow controlJune McEnroe2019-02-22
| | | | This opens up C-o, C-q and C-s for key bindings without C-v.
* Bind up and down arrows to scrollJune McEnroe2019-02-22
| | | | | Honestly it's kind of weird that IRC clients usually use these for input history.
* Remove topic TODOJune McEnroe2019-02-22
| | | | | I played around with it and it doesn't look right unless there is only one channel listed in the status.
* Update status line after scrolling and term eventsJune McEnroe2019-02-22
|
* Reorganize UI code for the umpteenth timeJune McEnroe2019-02-22
| | | | It's actually in a good state now, I think.
* Replace "view" with "window"June McEnroe2019-02-21
| | | | | | | I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy.
* Remove ROT13June McEnroe2019-02-21
| | | | It's just not convenient when it can only do the whole line...
* Avoid unused variable warnings with getyxJune McEnroe2019-01-25
|
* Add M-? to apply ROT13June McEnroe2018-12-16
|
* Underline own nickJune McEnroe2018-12-15
|
* Add uint typedefJune McEnroe2018-12-08
|
* Rename verbose to rawJune McEnroe2018-12-05
| | | | And change the format of the sticky tag names again.
* Revert half-working reconnecting stuffJune McEnroe2018-12-04
|
* Call uiShow at init so that TermFocus gets setJune McEnroe2018-12-03
|
* Fix UI resume on /urlJune McEnroe2018-12-02
|
* Crudely handle reconnecting after suspendJune McEnroe2018-12-01
|
* Show unread count in term titleJune McEnroe2018-11-29
| | | | Also render status line with just spaces. Looks much cleaner this way.
* Add M-m key to insert a blank lineJune McEnroe2018-11-27
| | | | For manually marking the log.
* Add notification with notify-sendJune McEnroe2018-10-28
|
* Rework status lineJune McEnroe2018-10-22
|
* Factor out uiPrompt to call on nick changeJune McEnroe2018-09-14
|
* Check width of entire next word including codesJune McEnroe2018-09-14
| | | | | This results in a tiny bit of premature wrapping for color codes, but that isn't a problem.
* Remove word handling from formatParseJune McEnroe2018-09-14
|
* Preview with nick in input windowJune McEnroe2018-09-13
|
* Avoid uninitialized x in uiReadJune McEnroe2018-09-13
|
* Add IRCDefault to colors enumJune McEnroe2018-09-13
|
* Rewrite UI againJune McEnroe2018-09-13
| | | | | | The persistent topic is gone and the status line is now at the top. The status formatting still needs to be reworked. I also want to try showing the nick in the input window so it really looks like your next message.
* Use formatParse split to position input cursorJune McEnroe2018-09-12
|
* Factor out IRC formatting parsingJune McEnroe2018-09-12
|
* Preserve scroll position when new lines appearJune McEnroe2018-09-05
|
* Use PascalCase for constantsJune McEnroe2018-09-02
| | | | Begone underscores.
* Add status indicatorsJune McEnroe2018-09-02
|
* Mark views when they are createdJune McEnroe2018-09-02
|
* Avoid unportable iswascii(3)June McEnroe2018-08-20
|
* Add UI "heat" for status/messages/pingsJune McEnroe2018-08-17
| | | | | Bring back the beeps! Allow pings from notices. Also factor out dequoting of part/quit messages.
* Set title to tag nameJune McEnroe2018-08-13
|
* Add /query, /part and /closeJune McEnroe2018-08-13
| | | | | Closing a channel before parting it is a bit weird, but if I send a PART on /close, it would get reopened again to show the part message.