aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode/vim_mode.pl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* vim_mode: Fix caw.Simon Ruderich2010-10-021-3/+8
| | | | In contrast to cw, caw does delete the space before a word.
* vim_mode: Fix indentation.Simon Ruderich2010-10-021-68/+68
| | | | No code change.
* vim_mode: Add aw (text-object).Simon Ruderich2010-10-021-10/+41
|
* vim_mode: Add Ctrl-R in insert mode.Simon Ruderich2010-10-021-5/+26
|
* vim_mode: Fix crash when pressing , or ; before f,t,F,T.Simon Ruderich2010-10-021-2/+2
|
* vim_mode: Fix j from destroying the input line.Simon Ruderich2010-10-021-1/+5
|
* vim_mode: Add missing (undef, undef) for clarity.Simon Ruderich2010-10-021-2/+2
|
* vim_mode: Move some functions.Simon Ruderich2010-10-021-69/+68
| | | | No changes.
* vim_mode: Add debug output.Simon Ruderich2010-10-021-0/+1
|
* vim_mode: Minor cleanup.Simon Ruderich2010-10-021-3/+2
|
* vim_mode: Minor comment fixes.Simon Ruderich2010-10-021-2/+3
|
* vim_mode: Fix :reg not to display "_.Simon Ruderich2010-10-021-0/+1
|
* vim_mode: Fix ~ at end of the line.Simon Ruderich2010-10-021-1/+1
|
* vim_mode: Fix r with count.Simon Ruderich2010-10-021-2/+6
|
* vim_mode: Fix a with count.Simon Ruderich2010-10-021-1/+1
|
* vim_mode: Movement commands return $cur_pos, $new_pos.Simon Ruderich2010-10-021-110/+103
| | | | They don't call _input_pos() anymore.
* vim_mode: Fix history with /set vim_mode_utf8 on.Simon Ruderich2010-10-021-2/+12
|
* vim_mode: Add text-object aW.Simon Ruderich2010-10-021-4/+89
|
* vim_mode: Add :bd.Simon Ruderich2010-10-011-0/+4
|
* vim_mode: Fix gE in first word on line.Simon Ruderich2010-10-011-1/+1
|
* vim_mode: Fix W between words.Simon Ruderich2010-10-011-0/+7
|
* vim_mode: First work on text-objects.Simon Ruderich2010-10-011-1/+23
| | | | They do nothing at the moment, but get (correctly) called.
* vim_mode: Allow movement functions to change $cur_pos.Simon Ruderich2010-10-011-8/+54
|
* vim_mode: Fix _beginning_of_WORD() at end of the line.Simon Ruderich2010-10-011-1/+1
|
* vim_mode: Add known bugs.Simon Ruderich2010-10-011-0/+5
|
* vim_mode: Add ge and gE.Simon Ruderich2010-10-011-1/+29
|
* vim_mode: Move movement W to new function.Simon Ruderich2010-10-011-7/+15
|
* vim_mode: Move movement w to new function.Simon Ruderich2010-10-011-13/+20
|
* vim_mode: " is not repeatable.Simon Ruderich2010-10-011-1/+0
|
* vim_mode: Store repeatable "movements" in hash.Simon Ruderich2010-10-011-7/+20
|
* vim_mode: Update documentation.Simon Ruderich2010-10-011-55/+81
|
* vim_mode: Add Ctrl-W j/k to switch to split windows.Simon Ruderich2010-10-011-2/+18
|
* vim_mode: Minor comment update.Simon Ruderich2010-10-011-1/+1
|
* Merge remote branch 'origin/dev'Tom Feist2010-10-011-4/+49
|\
| * vim_mode: Add Ctrl-D, Ctrl-U, Ctrl-F, Ctrl-B for scrolling.Simon Ruderich2010-10-011-2/+41
| |
| * vim_mode: Add :undol[ist], remove Ctrl-D.Simon Ruderich2010-10-011-2/+2
| |
| * vim_mode: Add Ctrl-6 in command mode, same like :b#.Simon Ruderich2010-09-301-0/+6
| |
* | Merge remote branch 'origin/dev'Tom Feist2010-09-301-5/+22
|\|
| * vim_mode: Add :bn :bp.Simon Ruderich2010-09-301-2/+8
| |
| * vim_mode: Add :ls and :buffers.Simon Ruderich2010-09-301-0/+3
| |
| * vim_mode: Fix esc in ex mode leaving the prompt unchanged.Simon Ruderich2010-09-301-1/+3
| |
| * vim_mode: Document ; and .Simon Ruderich2010-09-301-0/+1
| |
| * vim_mode: Add s.Simon Ruderich2010-09-301-1/+7
| |
| * vim_mode: Remove implemented todo.Simon Ruderich2010-09-301-1/+0
| |
* | beginnings of configurable undo buffer size limit.Tom Feist2010-09-301-0/+2
|/
* more fixing to undo, weird bug that C-d would make it work when it shouldn't.Tom Feist2010-09-301-6/+6
|
* Merge remote branch 'origin/dev'Tom Feist2010-09-301-0/+42
|\
| * vim_mode: Add ; and ,.Simon Ruderich2010-09-301-0/+41
| |
| * vim_mode: Add missing use for irssi 0.8.14.Simon Ruderich2010-09-301-0/+1
| |
* | mostly working undo/redo support. Still adding history entries though, which weTom Feist2010-09-301-15/+33
|/ | | | don't really want.