aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote branch 'origin/dev' into devTom Feist2010-10-089-481/+1848
|\ | | | | | | | | | | Conflicts: prompt_info/prompt_replace.pl test/irssi/config
| * vim_mode: Fix :registers' display of "+ and "*.Simon Ruderich2010-10-071-0/+5
| | | | | | | | Reported by estragib.
| * vim_mode: Increase insert mode timeout to one second.Simon Ruderich2010-10-071-1/+1
| |
| * vim_mode: Add warning for irssi < 0.8.13 for g and GG.Simon Ruderich2010-10-071-0/+1
| |
| * vim_mode: Fix yank movement and behavior.Simon Ruderich2010-10-071-1/+12
| | | | | | | | Reported by estragib.
| * vim_mode: Minor documentation updates.Simon Ruderich2010-10-071-1/+4
| |
| * vim_mode: Fix i/I/a/A repeat.Simon Ruderich2010-10-071-4/+8
| |
| * vim_mode: Fix Ctrl-W j, Ctrl-W k.Simon Ruderich2010-10-071-8/+5
| |
| * vim_mode: Fix ex-mode broken in last commit.Simon Ruderich2010-10-071-1/+1
| |
| * vim_mode: Add internal support to bind ex-mode commands in command mode.Simon Ruderich2010-10-071-17/+26
| |
| * vim_mode: Fix minor typo.Simon Ruderich2010-10-071-1/+1
| |
| * vim_mode: Add :bnext, :bprev and :bdelete.Simon Ruderich2010-10-071-3/+6
| |
| * vim_mode: Separate Ex-mode commands.Simon Ruderich2010-10-071-16/+74
| |
| * vim_mode: Add comments before each code section.Simon Ruderich2010-10-071-0/+11
| |
| * vim_mode: Fix function names.Simon Ruderich2010-10-071-107/+107
| |
| * vim_mode: Add support for complex command mode mappings.Simon Ruderich2010-10-071-250/+367
| | | | | | | | Also some internal cleanup of handle_command_cmd().
| * vim_mode: More cleanup of handle_command_cmd().Simon Ruderich2010-10-061-7/+6
| |
| * vim_mode: Simplify handle_command_cmd() a little.Simon Ruderich2010-10-061-8/+9
| |
| * vim_mode: Remove outdated TODO.Simon Ruderich2010-10-061-3/+0
| |
| * back to stty parsing, with linux and osx cases. Falls back to 80x24 if itTom Feist2010-10-061-8/+18
| | | | | | | | doesn't match either.
| * added some debugging output to terminal size detectionTom Feist2010-10-061-2/+4
| |
| * changed terminal size detection from stty to tput lines/colsTom Feist2010-10-061-11/+8
| |
| * added /print_test to check rev. video stuff is behaving.Tom Feist2010-10-061-1/+6
| |
| * fixed priorities (-1) and position (100) of prompt statusbarsTom Feist2010-10-061-4/+8
| |
| * fixed a bug causing prompt to not get updated properly, and added a nasty compatTom Feist2010-10-061-3/+9
| | | | | | | | hack so things expecting prompt_Info will still load.
| * modified the API signal handling to prepend $p by default (as prompt_info sortTom Feist2010-10-061-1/+2
| | | | | | | | of worked).
| * general cleanup and refactoring. Need to figure out how to handle regions goingTom Feist2010-10-061-35/+87
| | | | | | | | backwards as well as forwards. Also better ways to remove them when no longer active.
| * moved most of the overlay stuff out into overlays.pl for another time.Tom Feist2010-10-062-85/+89
| |
| * renamed a lot of things, it's now 'uberprompt', which can be set from withinTom Feist2010-10-061-124/+157
| | | | | | | | | | | | | | | | irssi rather than editing themes. It also allows additional text to be specified with the $p 'variable' Started on a big overlay system, but needs a lot more thinking about. Will rip it out and just make visual inputline for now.
| * moved a handy snippet into my feature-tests dir for querying internal signals.Tom Feist2010-10-061-0/+14
| |
| * removed useless include of Term::SizeTom Feist2010-10-061-1/+0
| |
| * test release of prompt_replace. need to rework the whole visual stuff a bitTom Feist2010-10-061-49/+92
| | | | | | | | more - probably into a generic overlay system. Also menu!
| * updating my test config after it broke horriblyTom Feist2010-10-061-4/+4
| |
| * documentation improvementsTom Feist2010-10-062-1/+60
| |
| * more progress on replacing prompt bar for visual mode and other trickery. ↵Tom Feist2010-10-061-0/+275
| | | | | | | | | | | | | | Prompt is mostly working but needs configuration options and more cleanup. Visual mode is still hacky as sin.
| * disabled removal of timeout waiting for esc input buffer, since it was aTom Feist2010-10-051-2/+2
| | | | | | | | timeout_once anyway.
| * vim_mode: Add #irssi_vim.Simon Ruderich2010-10-041-1/+1
| |
| * vim_mode: Fix :abc from display all buffers matching c.Simon Ruderich2010-10-041-1/+1
| | | | | | | | Reported by estragib.
| * vim_mode: Also clear @ex_buf when pressing esc.Simon Ruderich2010-10-041-1/+3
| |
| * vim_mode: Use elsif where possible.Simon Ruderich2010-10-041-4/+2
| |
| * vim_mode: Minor comment fixes.Simon Ruderich2010-10-041-2/+1
| |
| * vim_mode: Describe irssi requirements.Simon Ruderich2010-10-041-0/+14
| |
| * vim_mode: Prevent j and k with operator.Simon Ruderich2010-10-041-0/+5
| |
| * vim_mode: Add gg, moves to oldest history line.Simon Ruderich2010-10-041-1/+7
| |
| * vim_mode: Add G, moves to count-th history line.Simon Ruderich2010-10-041-2/+43
| |
| * vim_mode: Fix "xdd and "xyy not resetting the register.Simon Ruderich2010-10-041-0/+4
| |
| * vim_mode: Fix cw/cW on whitespace directly in front of word.Simon Ruderich2010-10-031-2/+4
| |
| * vim_mode: Fix c repetition.Simon Ruderich2010-10-031-1/+3
| |
| * vim_mode: Minor comment fix.Simon Ruderich2010-10-031-1/+1
| |
| * vim_mode: Reorder $movements_repeatable.Simon Ruderich2010-10-031-4/+4
| |