aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-03a fix for the dead channelsterminaldweller1-4/+15
2023-08-03added a dead channel mode. accepts a list. will not send anything by ↵terminaldweller1-2/+24
disabling the enter key.
2023-08-03added two prompts(status bar items) that kinda work more like vim prompts ↵terminaldweller1-3/+157
now, changing color on mode change)
2023-05-22this change makes it so sb_position's statusbar item updates correctly with ↵terminaldweller1-4/+10
vim_mode
2022-04-27janky fixterminaldweller1-3/+12
2012-04-28clean up a bit of the content/style of doc patch by rking.Tom Feist1-18/+20
2012-04-13Add tip about Alt+_ window switching.rking1-0/+31
- Paragraph about how it is better to use Alt+[0-9qwertyuio] than Esc+[0-9qwertyuio] - How to fix metaSendsEscape for xterm.
2012-04-13vim-mode: Document screen/tmux esc timeout issues and fix.Simon Ruderich1-0/+15
2012-02-03bump vim_mode version number to 1.1.0 ready for tagging.vim_mode_1.1Tom Feist1-2/+2
2012-02-02vim_mode: change vim_mode_esc_buf_timeout setting to be of type TIME. DefaultTom Feist1-1/+8
remains at 10ms. TODO: people who have customised this already may experience Weird Thiiiings(tm). Test.
2011-07-02fixed _warn that should have been _debug, peth++Tom Feist1-1/+1
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 Feist2-10/+10
2011-04-22vim-mode/vim_mode: docs: missed a bracket.Tom Feist2-2/+2
2011-04-22vim-mode/vim_mode: more doc updates about hooks and sbar items.Tom Feist2-37/+59
2011-04-22vim-mode/vim_mode: more documentation on how to use uberprompt hooks andTom Feist2-2/+136
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 Feist2-92/+176
2011-04-18vim-mode/vim_mode: more docs update. Grar.Tom Feist2-44/+16
2011-04-18vim-mode/vim_mode: updated docs (only partially, to see how it looks)Tom Feist2-75/+139
2011-04-18updated a whole bunch of README files.Tom Feist1-0/+444
2011-04-18removed original markdown readmesTom Feist1-327/+0
2011-04-18vim-mode/vim_mode: more changes to docs and generator. Starting to look almostTom Feist2-157/+233
readable now.
2011-04-18added vim-mode genereated readmeTom Feist1-0/+284
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-05vim-mode/tests.pl: Add first real tests: h l 0 ^ $ <Space> <BS> f t.Simon Ruderich1-16/+139
Merge testing/tests/003-vim-mode.t with vim-mode/tests.pl and remove it from testing/.
2011-03-04vim-mode/vim_mode: make :mapped commands use appropriate context when callingTom Feist1-7/+27
irssi commands.
2011-03-01vim-mode: Add tests.pl.Simon Ruderich1-0/+48
2011-03-01vim-mode: Add irssi configuration directory used for testing.Simon Ruderich3-0/+40
Contains default configuration with vim-mode statusbars.
2011-02-24defined check to prevent a warning in flush_input_buffer() [thanks DE1]Tom Feist1-1/+1
2011-02-19added some detail on FSM for input control, and how to detect <esc> sequences.Tom Feist1-18/+55
2011-02-19input.txt: Add some general ideas.Simon Ruderich1-1/+18
2011-02-19added input.txt where we can plan how the new input system will workTom Feist1-0/+4
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.