summaryrefslogtreecommitdiff
path: root/src/gui/curses/gui-curses-key.c
AgeCommit message (Collapse)Author
2014-05-04core: change default key for bare display from alt-'!' to alt-'l'Sébastien Helleu
2014-04-01core: add default key alt-'-' to toggle filters in current buffer (closes #17)Sébastien Helleu
2014-03-19core: add key alt-j,alt-f to jump to first buffer, change command for jump ↵Sebastien Helleu
to last buffer New key alt-j,alt-f is bound by default to "/buffer -". The existing key alt-j,alt-l is now bound by default to "/buffer +".
2014-02-16core: add bare display mode (for easy text selection and click on URLs)Sebastien Helleu
New key: alt+"!", to swith to bare display (same key to come back to standard display). New options: - weechat.look.bare_display_exit_on_input (default: on): by default any changes in input will return to standard display - weechat.look.bare_display_time_format (default: "%H:%M"): the format of time used in bare display.
2014-02-10api: add integer return code for functions hook_{signal|hsignal}_sendSebastien Helleu
2014-01-05core: replace calls to sprintf() with snprintf()Sebastien Helleu
2014-01-01core: update copyright datesSebastien Helleu
2013-12-01core: replace default key ctrl+"c", "u" by ctrl+"c", "_" for underlined text ↵Sebastien Helleu
in messages
2013-12-01core: replace default key ctrl+"c", "r" by ctrl+"c", "v" for reverse video ↵Sebastien Helleu
in messages
2013-11-12core: fix truncated text when pasting several long lines (bug #40210)Sebastien Helleu
2013-11-05core: add default keys alt+home/end and alt+F11/F12 for xtermSebastien Helleu
2013-08-17core: add search of regular expression in buffer, don't reset search type on ↵Sebastien Helleu
a new search, select where to search (messages/prefixes) Key changed in search context: - ctrl+"r": switch search type: string/regex New keys in search context: - alt+"c": case (in)sensitive search - tab: search in messages/prefixes/both
2013-03-17core: fix refresh of item "completion" (bug #38214) (patch from Nils Görs)Sebastien Helleu
The item is now cleared after any action that is changing content of command line and after switch of buffer.
2013-03-17core: fix typos in many comments and some stringsSebastien Helleu
2013-01-01core: update copyright datesSebastien Helleu
2012-12-19core: fix default mouse buttons actions for script buffer (focus the window ↵Sebastien Helleu
before executing action)
2012-12-15core: move comments with description of C file to top of filesSebastien Helleu
2012-12-13core: reformat comments for functionsSebastien Helleu
2012-08-30core: add default key alt+"x" (zoom on merged buffer) (task #11029)Sebastien Helleu
2012-08-21script: add option script.look.quiet_actions (no messages when ↵Sebastien Helleu
installing/removing/loading/unloading scripts on script buffer)
2012-08-20script: add focus info for mouse on script buffer, add two default mouse ↵Sebastien Helleu
bindings: left button = select line, right button = install/remove script
2012-08-17core: add mouse bindings ctrl+wheel up/down to scroll horizontally buffers ↵Sebastien Helleu
with free content
2012-08-14core: add new plugin "script" (scripts manager, replacing scripts weeget.py ↵Sebastien Helleu
and script.pl)
2012-07-05core: add default key alt+"s" (toggle aspell)Sebastien Helleu
2012-03-24core: convert tabs to spaces in text pasted (bug #25028)Sebastien Helleu
2012-03-10core: fix lost scroll when switching to a buffer with a pending search (ctrl-r)Sebastien Helleu
2012-03-10core: fix grab of key (alt-k) (bug introduced with bracketed paste mode)Sebastien Helleu
2012-03-09core: fix broken mouse (bug introduced by the previous commit)Sebastien Helleu
2012-03-09core: improve and fix bugs on standard paste and bracketed pasteSebastien Helleu
Changes: - wait control sequence for end of bracketed paste (and only after, check if we should ask confirmation to user) - add option weechat.look.paste_bracketed_timer_delay to force the end of bracketed paste if the control sequence for end of bracketed paste was not received in time - in bracketed paste mode, with paste_max_lines=1, do not ask confirmation for one line (ask for one line only if paste_max_lines=0) - fix bugs with mintty: bracketed paste should be ok every time (even if some codes are sometimes partially received, WeeChat will now handle that properly); the standard paste often fails (due to bug in mintty, which sends paste very slowly to remote app); so the bracketed paste mode is highly recommended with mintty - after paste in bracketed paste mode, the undo key (ctrl+"_" by default) will undo whole paste, not chars one by one
2012-03-06core: read data on stdin even when asking confirmation for paste (fix lost ↵Sebastien Helleu
chars under mintty terminal)
2012-03-04core: add support of terminal "bracketed paste mode" (task #11316)Sebastien Helleu
2012-01-24core: move option "scroll_unread" from command /input to /windowSebastien Helleu
2012-01-08core: update copyright datesSebastien Helleu
2011-12-16core: add default keys "meta2-1;5D" and "meta2-1;5C" (ctrl+left/right) for ↵Sebastien Helleu
gnome-terminal
2011-11-08core: add option "jump_last_buffer_displayed" for command /input (key: ↵Sebastien Helleu
alt+"/") (task #11553)
2011-10-29core: change default command for key alt-m: /mouse toggle -> /mute mouse toggleSebastien Helleu
2011-10-26core: remove unneeded whitespaceSebastien Helleu
2011-09-27core: fix paste detection (problem with end of lines)Sebastien Helleu
2011-09-23core: add default key "meta2-[E" (F5) for linux consoleSebastien Helleu
2011-08-18core: fix input of wide UTF-8 chars under Cygwin (bug #34061)Sebastien Helleu
2011-08-14core: return info about line/word for chat area in focus hashtable, add keys ↵Sebastien Helleu
m/q/Q to quote line in cursor mode, sort mouse keys by priority
2011-08-13core: fix typo in commentSebastien Helleu
2011-07-30core: add "/input grab_mouse" and "/input grab_mouse_area" (default: right ↵Sebastien Helleu
click on input bar)
2011-07-29core: add number in windows, improve mouse/cursor actions when screen is splitSebastien Helleu
2011-07-28core: improve mouse support: process utf-8 codes, add option ↵Sebastien Helleu
weechat.look.mouse_timer_delay, remove key meta2-M, fix problem with iso chars when grabbing mouse codes
2011-07-26core: add mouse support (task #5435), free cursor movement, hook_focus, fix ↵Sebastien Helleu
bugs with key "^" (bug #32072, bug #21381), fix bugs with bar windows, completion and /buffer New features and bugs fixed: - mouse support: new command /mouse, new option weechat.look.mouse, new key context "mouse" - free movement of cursor: new command /cursor, new key context "cursor" - new hook_focus (used by cursor and mouse) - info "cursor_mode" - bugs fixed with key "^" - allow plugin name in /buffer name - fix bugs with bar windows: do not create bar windows for hidden bars - fix completion bug when two words for completion are equal but with different case - automatic scroll direction in /bar scroll (x/y is now optional)
2011-07-05core: add context "search" for keys (to define keys used during search in ↵Sebastien Helleu
buffer with ctrl+"r")