Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-06-05 | get rid of new_text | ailin-nemui | |
2017-06-04 | Refactor regex and implement UTF8 mode for GRegex | ailin-nemui | |
- with non-unicode byte to Private Use Area A mapping - move all ifdefs to iregex.h file only | |||
2017-05-27 | do not reset true colour bit on colour reset | ailin-nemui | |
fixes #710 | |||
2017-03-21 | Intentation/whitespace fixes | Stephen Oberholtzer | |
Change several instances of space-indentation to tabs, matching the surrounding code. | |||
2017-03-21 | Fix delay at startup when running against glib 2.49.3+ | Stephen Oberholtzer | |
In glib v2.49.3, an optimization was made to eliminate certain unnecessary wakeups. (The specific change was made in e4ee3079c5afc3c1c3d2415f20c3e8605728f074). Before this change, the first call to g_main_iteration would always complete immediately. In Irssi, this effectively reversed the order of the main loop, causing the reload_config check and the dirty_check to run *before* the first blocking call to g_main_iteration. With the new logic, the first g_main_iteration call now blocks, preventing the screen from being refreshed until the user starts typing or a timer goes off. (It also delays processing of SIGHUP, but I expect that is not a common situation.) This commit reorders the main loop to wait at the end of the loop, rather than the beginning, addressing the problem. (This closes Debian bug #856201.) | |||
2017-03-04 | Merge branch 'd-minor' into 'master' | Nei | |
Prevent some potential null-pointer deferences. See merge request !9 | |||
2017-02-14 | Prevent some potential null-pointer deferences. | LemonBoy | |
Spotted by our friend scan-build. | |||
2017-01-31 | Merge pull request #626 from ailin-nemui/textbuffer_monospace | ailin-nemui | |
support storing and replaying the monospace attribute in textbuffer | |||
2017-01-20 | implement break_wide | ailin-nemui | |
for more pleasant east asian mixed display | |||
2017-01-03 | Merge branch 'master' into 'security' | Nei | |
Sync to master See merge request !6 | |||
2017-01-03 | Merge pull request #585 from ailin-nemui/win_seq | ailin-nemui | |
g_sequence backing for window list | |||
2017-01-03 | switch for gregex and regex.h | Ailin Nemui | |
2017-01-02 | Use the RAW flag when building the regexps. | LemonBoy | |
Also, plugged a memory leak when retrieving the match position. | |||
2017-01-02 | Rebase against master. | LemonBoy | |
2017-01-02 | Remove the regexp_compiled field. | LemonBoy | |
It was made redundant by the introduction of the pointer to the GRegex structure. Silence the compiler warning in textbuffer.c about preg being initialized by setting it to NULL. | |||
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-19 | Fix oob read on invalid utf8 in term_addstr | Joseph Bisch | |
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-12-13 | manually redraw the activity list on expose only | ailin-nemui | |
might speed up /foreach query /unquery | |||
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 |