Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-02 | Use GLib's regexp interface (backed by PCRE) | LemonBoy | |
2016-12-21 | Merge pull request #587 from ailin-nemui/sbar_crash | ailin-nemui | |
add assertion to statusbar_read_group | |||
2016-12-15 | reset background for mirc colour 99 | ailin-nemui | |
fix #571 | |||
2016-12-15 | add assertion to statusbar_read_group | ailin-nemui | |
fix #564 | |||
2016-10-23 | Kill bell_beeps. | Alexander Færøy | |
Fixes #524 | |||
2016-08-24 | Fix an OOB access in the cutbuffer implementation. | LemonBoy | |
2016-08-12 | remove broken dummy mode | ailin-nemui | |
2016-08-04 | remove curses terminal and ncurses macro | ailin-nemui | |
2016-06-25 | check for NULL in statusbar_more_updated | ailin-nemui | |
fixes crash due to invalid access of active_win members when the more indicator is triggered without an active window | |||
2016-06-05 | Factor out some redundant code and remove hashtable_get_keys | LemonBoy | |
2016-05-18 | Merge pull request #480 from xavierog/handle-utf8-nicks-with-mk_wcwidth | ailin-nemui | |
Handle utf8 nicks with mk_wcwidth() | |||
2016-05-13 | Simplify scrlen_str() using string_width(). | Xavier G | |
2016-05-13 | Leverage string_policy(). | Xavier G | |
2016-05-13 | Move utf8.{h,c} from fe-common/core to core. | Xavier G | |
2016-05-03 | Fix some ANSI C issues. | pisculichi | |
2016-03-29 | Improve cutbuffer handling | ailin-nemui | |
* Adds two new keys which you can bind in /bind: yank_next_cutbuffer: Revert to the previous last deleted text append_next_kill: Append next deletion * Consecutive kills are now appended to the current cutbuffer | |||
2016-03-22 | Make use of terminal application keys configurable | ailin-nemui | |
adds a new setting term_appkey_mode which can enable or disable the use of keyboard transmit (application keys) mode. Fixes #430 | |||
2016-03-22 | Merge pull request #452 from LemonBoy/terminfo-cup | ailin-nemui | |
Don't call terminfo_cont() twice on resume | |||
2016-03-22 | Merge pull request #457 from ailin-nemui/fix_450 | ailin-nemui | |
fix race condition in terminal init | |||
2016-03-22 | Merge pull request #458 from ailin-nemui/fix_449 | ailin-nemui | |
Properly toggle bracketed paste mode on stop/cont | |||
2016-03-22 | Don't call terminfo_cont() twice on resume | LemonBoy | |
Fixes some weirdness when using ^Z with zsh. | |||
2016-03-22 | Properly toggle bracketed paste mode on stop/cont | ailin-nemui | |
Fixes #449 | |||
2016-03-22 | fix race condition in terminal init | ailin-nemui | |
remove the tcgetattr call to a single time on irssi load instead of querying it each time. Fixes #450 | |||
2016-03-22 | cutbuffer: do not unconditionally use replace when noop was requested | ailin-nemui | |
2016-02-24 | Make pasting warning appear when long pastes are going to be split into many ↵ | Manish Goregaokar | |
lines | |||
2016-02-24 | use a #define'd LINE_SPLIT_LIMIT instead of hardcoding 400 | Manish Goregaokar | |
2016-02-10 | fix whitespace | Todd A. Pratt | |
2016-01-30 | remove memory allocation check, spaces to tabs | Todd A. Pratt | |
2016-01-30 | add an append operation to cut buffer handling | Todd A. Pratt | |
2016-01-26 | Merge pull request #353 from toddpratt/master | ailin-nemui | |
Allow for prepending to the cutbuffer in addition to replacing it. | |||
2016-01-08 | reorder history add and fixes | ailin-nemui | |
2015-12-15 | Merge pull request #306 from dequis/bracketed-paste | ailin-nemui | |
Implement paste detection via the bracketed paste mode 2: bracket pasterer | |||
2015-12-13 | Bracketed paste: fix nitpick from ahf's review | dequis | |
Thanks ahf | |||
2015-12-12 | Bracketed paste: Adjust paste line count if there's text after newlines | dequis | |
With bracketed paste, "a\nb" will result in two lines being pasted, because it's a single thing, with an end marker which the timeout based pastes don't have. Due to the way term_gets() counts lines, that input will have paste_line_count == 1. This can be misleading. This code adjusts it by looking at the last character, and increasing the count if it finds anything that isn't a newline. | |||
2015-12-12 | Disable timeout-based paste detection if paste_use_bracketed_mode is on | dequis | |
2015-12-09 | Merge branch 'master' of github.com:irssi/irssi | Todd A. Pratt | |
2015-12-09 | Remove all WIN32 ifdefs (unifdef -UWIN32) | dequis | |
Just use cygwin. This looks like it wasn't enough to do anything useful, and I don't think anyone cares about supporting win32 the hard way. | |||
2015-12-09 | Merge pull request #174 from ailin-nemui/entry-prompt-colours | ailin-nemui | |
reimplement format and length logic for the entry prompt | |||
2015-11-22 | Use 'isblank()' instead of a custom macro | LemonBoy | |
2015-11-22 | Correct a wrong use of the 'paste_buffer' variable | Fabian Kurz | |
The function "static void paste_buffer_join_lines(GArray *buf)" in "src/fe-text/gui-readline.c" is supposed to join lines from the GArray pointed to by *buf under certain circumstances. In the code of the function "buf" is actually used for getting the length of the GArray, but to get a pointer to the data, "paste_buffer->data" is used; paste_buffer is defined in the scope of the whole file. This delivers the desired result, because this function is only called once, with "paste_buffer" as the argument. If paste_buffer_join_lines() will ever be used with a different argument, it will fail. | |||
2015-11-14 | use the enum name which was the original intended change | Todd A. Pratt | |
2015-11-13 | fix indentation, undelete line not meant to be deleted. | Todd A. Pratt | |
2015-11-13 | remove more cruft from previous implementation | Todd A. Pratt | |
2015-11-13 | remove cruft from previous implementation | Todd A. Pratt | |
2015-11-13 | a facility for prepending or replacing the cutbuffer | Todd A. Pratt | |
2015-11-08 | Merge remote-tracking branch 'origin/master' into bracketed-paste | dequis | |
2015-11-02 | Merge branch 'master' of github.com:toddpratt/irssi | Todd A. Pratt | |
2015-11-02 | Make C-w and M-backspace work right. | Todd A. Pratt | |
2015-11-02 | Merge pull request #330 from dequis/xterm-keypad-enter | ailin-nemui | |
Add xterm's keypad enter, meta-O-M to "key return" bindings | |||
2015-11-01 | Merge pull request #320 from irssi/ahf/add-setting-type-any | dx | |
Fix warnings |