aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode/vim_mode.pl (unfollow)
Commit message (Collapse)AuthorFilesLines
2011-05-05vim-mode/vim_mode: more broken. Need to start over, I think.Tom Feist1-192/+277
2011-05-05vim-mode/vim_mode: quite heavily broken. Needs a whole new rethink about the wayTom Feist1-434/+490
it's going to be buffered and processed.
2011-05-05vim-mode/vim_mode: fix some warnings/errors on script unload, allow cmd_seq toTom Feist1-27/+89
be a 2-char seqeuence rather than single one repeated, and some other fixes.
2011-05-05vim-mode/vim_mode: tidy up, remove some dead code.Tom Feist1-53/+62
2011-05-05vim-mode/vim_mode: beginnings of new input system starting to take shape -Tom Feist1-204/+398
following actual vim style of timeout/ttimeout[_len] flags and fields.
2011-05-05vim-mode/vim_mode: added :set [no]option for booleans. Needs testing (whichTom Feist1-0/+15
can't be done until I unbreak the input system :(
2011-05-05vim-mode/vim_mode: changed input_buf to escape_buf to more accurately representTom Feist1-91/+128
what it's for.
2011-05-05addded all the 'official' vim timeout* settigns for controliling escape ↵Tom Feist1-10/+12
handling.
2011-05-05change _debug to eliminate DEBUG function callTom Feist1-6/+24
2011-05-05vim-mode/vim_mode: moved input handling code out of signal handler into aTom Feist1-21/+56
separate function, and clarified a lot of the keycode handling with KEY_* constants.
2011-05-05vim_mode: small comment change testTom Feist1-1/+1
2011-05-05vim-mode/vim_mode: minor comment fixupsTom Feist1-3/+6
2011-05-05vim-mode/vim_mode: OCD code reformatting (thanks, perltidy!)Tom Feist1-154/+190
2011-05-05vim-mode/vim_mode: moved things into more common groupings and added commentTom Feist1-163/+253
headings. cleaned up the warning code a bit.
2011-05-05renamed various statusbar-item and expando callbacks, and their generator ↵Tom Feist1-19/+25
functions.
2011-05-04vim-mode: new branch for fixing input code. Move it all to single location (endTom Feist1-516/+524
of file), and rename got_key handler to something standard (sig_gui_keypress)
2011-05-04small documentation fixupTom Feist1-0/+5
2011-04-28vim-mode/vim_mode: fixed the stupd bugs I missed by not testing. Might possiblyTom Feist1-2/+2
work now.
2011-04-28vim-mode/vim_mode: added new setting: 'esc_buf_timeout',Tom Feist1-2/+9
It determines the amount of time between escape being pressed and other keys being assumed to be part of an escape (meta-) sequence. Defaults to 10ms. Be careful changing it.
2011-04-22vim-mode/vim_mode: FINAL doc update for now. Or Else.Tom Feist1-5/+5
2011-04-22vim-mode/vim_mode: docs: missed a bracket.Tom Feist1-1/+1
2011-04-22vim-mode/vim_mode: more doc updates about hooks and sbar items.Tom Feist1-19/+30
2011-04-22vim-mode/vim_mode: more documentation on how to use uberprompt hooks andTom Feist1-1/+68
expandos to get vim_mode sbar items or variables.
2011-04-22vim-mode/vim_mode: added a new $vim_wins expando to be used instead of theTom Feist1-16/+28
vim_windows statusbar item if desired.
2011-04-18vim-mode/vim_mode: added '$vim_cmd_mode' expando that contains the same info asTom Feist1-4/+20
the vim_mode sbar item. Needs some cleanup though
2011-04-18vim-mode/vim_mode: all bullet points finally fired. I hope.Tom Feist1-46/+88
2011-04-18vim-mode/vim_mode: more docs update. Grar.Tom Feist1-22/+8
2011-04-18vim-mode/vim_mode: updated docs (only partially, to see how it looks)Tom Feist1-39/+69
2011-04-18vim-mode/vim_mode: more changes to docs and generator. Starting to look almostTom Feist1-77/+110
readable now.
2011-04-18vim-mode/vim_mode: podified helpTom Feist1-244/+412
2011-04-08vim-mode: minimal ex-mode tab-completion. Completes provided only the currentTom Feist1-1/+9
prefix allows only 1 unique completion.
2011-04-06vim-mode/vim_mode: cleanup of commands, and fix bug preventing ex mode fromTom Feist1-32/+46
working (oops).
2011-04-06vim_mode: C-c cancels ex mode. Start of <Leader> variable support.Tom Feist1-3/+14
2011-04-06vim_mode: ex_hist documentation additions and cleanup.Tom Feist1-7/+16
2011-04-06vim_mode: fix ambiguous shift warning.ex_historyTom Feist1-1/+1
2011-04-06vim_mode: added history support to Ex mode. Can be scrolled backwards andTom Feist1-17/+127
forwards using the arrow keys, and :eh shows the current history.
2011-04-06vim_mode: minor cleanup of constantsTom Feist1-8/+8
2011-04-06vim-mode: modify init sequence to bind (default) commands after settings areTom Feist1-7/+13
loaded, otherwise lots of undef errors
2011-04-01modify all scripts to use the new script_is_loaded() function, since newerTom Feist1-7/+1
versions of perl get upset at defined(%hash).
2011-03-04vim-mode/vim_mode: make :mapped commands use appropriate context when callingTom Feist1-7/+27
irssi commands.
2011-02-24defined check to prevent a warning in flush_input_buffer() [thanks DE1]Tom Feist1-1/+1
2011-02-19fixed deprecated warning on defined (%hash)Tom Feist1-1/+1
2011-02-12vim-mode: Fix :map displaying <C-H> as mapped to <BS>.Simon Ruderich1-0/+2
2011-01-20vim-mode: Support ^H as BS key.Simon Ruderich1-4/+5
Reported by peth. At the moment it's not working for custom mappings though!
2010-12-01Revert "vim_mode: prototype of partial ex bindings"Tom Feist1-31/+4
This reverts commit 611532140494a2b281d699bf8897ac344257e782. remove partial ex bindings from master until they're more stable. moved to remote branch map-enhance
2010-12-01vim_mode: prototype of partial ex bindingsmap-enhanceTom Feist1-4/+31
map with :map <keys> #<cmd> Invoking the mapped keys will insert <cmd> into the ex buffer, and leave it active for you to add further arguments.
2010-11-29vim_mode: Document cmdchars is not used for mappings.Simon Ruderich1-0/+4
Suggested by peth, thanks.
2010-11-22vim_mode: mapped Irssi commands only use $server context if it is available.Tom Feist1-1/+9
TODO: should maybe also try to use window context if available?
2010-11-22vim_mode: fix :snext/prev generating warnings when not connectedTom Feist1-0/+6
2010-11-08vim-mode: Fix s not using count.Simon Ruderich1-1/+1
Reported by estragib.