aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode (unfollow)
Commit message (Collapse)AuthorFilesLines
2010-09-27fixed crashing bug on script unloadTom Feist1-16/+18
2010-09-27adding still slightly broken undo code. The issue probably lies in how it'sTom Feist1-2/+40
being added, rather than the actual cmd_undo code.
2010-09-27vim_mode: Display count, operator, movement in statusbar.Simon Ruderich1-0/+15
2010-09-27vim_mode: G with no count goes to the last window.Simon Ruderich1-1/+12
2010-09-27vim_mode: Add G to switch to count-th window.Simon Ruderich1-0/+12
2010-09-26vim_mode: Correctly implement w b e like in vi.Simon Ruderich1-5/+59
2010-09-26vim_mode: Fix _end_of_WORD() when called at the end of the line.Simon Ruderich1-0/+2
2010-09-26vim_mode: Correctly handle multiple whitespace between words.Simon Ruderich1-11/+10
Thanks to SvenG for reporting this bug.
2010-09-26vim_mode: Fix my nick.Simon Ruderich1-2/+3
2010-09-26vim_mode: Add r.Simon Ruderich1-0/+13
2010-09-26refactored enter handling code into _commit_line(), and intercepted enter ↵Tom Feist1-21/+34
from ins mode too
2010-09-26modified script info block to contain real names.Tom Feist1-2/+3
2010-09-26vim_mode: Update documentation.Simon Ruderich1-4/+4
2010-09-26vim_mode: And document it (I keep forgetting).Simon Ruderich1-3/+1
2010-09-26vim_mode: Add ^ and fix I to use it.Simon Ruderich1-1/+17
2010-09-26vim_mode: Document S.Simon Ruderich1-1/+1
2010-09-26vim_mode: Add S.Simon Ruderich1-1/+7
2010-09-26vim_mode: Add C D.Simon Ruderich1-2/+10
2010-09-26vim_mode: . doesn't repeat movements now.Simon Ruderich1-5/+7
2010-09-26vim_mode: Minor code restructure. No functional changes.Simon Ruderich1-10/+12
2010-09-26first steps towards undoTom Feist1-0/+17
2010-09-26vim_mode: Add cc/dd/yy.Simon Ruderich1-2/+14
2010-09-26vim_mode: Implement skipping of movement/operator.Simon Ruderich1-6/+8
Used by . after startup.
2010-09-26vim_mode: Prepare for skipping of movements.Simon Ruderich1-26/+29
No real changes, only if (1) {} and indentation.
2010-09-26another todo commentTom Feist1-0/+1
2010-09-26vim_mode: Fix j,k destroying current input line.Simon Ruderich1-2/+9
2010-09-26vim_mode: Add <space>.Simon Ruderich1-0/+5
2010-09-26vim_mode: d/c copies deleted string to " register.Simon Ruderich1-4/+4
2010-09-26added a bunch of TODO items based on feedback from #irssi.Tom Feist1-0/+11
2010-09-26vim_mode: Document known bugs.Simon Ruderich1-0/+4
2010-09-26vim_mode: Fix . before running any commands to repeat.Simon Ruderich1-1/+5
2010-09-26vim_mode: If . is given a count it replaces original count.Simon Ruderich1-3/+4
2010-09-26vim_mode: Fix operators with h and l.Simon Ruderich1-2/+2
They deleted one character too much.
2010-09-26vim_mode: Document .Simon Ruderich1-0/+1
2010-09-26vim_mode: Implement . (repeat).Simon Ruderich1-3/+26
2010-09-26vim_mode: Don't run the operator if the position hasn't changed.Simon Ruderich1-1/+3
This prevents problems with e.g. df when the searched character wasn't found. This used to delete one character.
2010-09-26vim_mode: Add W B E.Simon Ruderich1-5/+20
At the moment w b e and W B E work the same way (the behavior for W B E is correct). w b e will be changed later to use vi words.
2010-09-26vim_mode: Add/remove some empty lines.Simon Ruderich1-2/+2
2010-09-26vim_mode: Fix p at the end of the line.Simon Ruderich1-1/+7
2010-09-26vim_mode: Add ~.Simon Ruderich1-0/+15
2010-09-26changed history version-check to emulate an up/down arrow keypress on olderTom Feist1-2/+13
versions of irssi.
2010-09-26added version test to history motion to avoid erroring on older versions thatTom Feist1-1/+4
don't have history_get_lines()
2010-09-26vim_mode: Add missing documentation for y p P.Simon Ruderich1-0/+1
2010-09-26vim_mode: Move some code, no changes.Simon Ruderich1-17/+15
2010-09-26vim_mode: Implement yank/paste: y p P.Simon Ruderich1-8/+60
2010-09-26vim_mode: Update documentation.Simon Ruderich1-2/+3
2010-09-26vim_mode: Only print debug output if DEBUG is 1.Simon Ruderich1-5/+4
2010-09-26vim_mode: Add myself to authors.Simon Ruderich1-2/+2
2010-09-26vim_mode: Use push with @esc_buf.Simon Ruderich1-3/+1
Should be faster (and a little cleaner).
2010-09-26vim_mode: Implement a.Simon Ruderich1-1/+6