aboutsummaryrefslogtreecommitdiffstats
path: root/vim-mode (follow)
Commit message (Collapse)AuthorAgeFilesLines
* a fix for the dead channelsterminaldweller2023-08-031-4/+15
|
* added a dead channel mode. accepts a list. will not send anything by ↵terminaldweller2023-08-031-2/+24
| | | | disabling the enter key.
* added two prompts(status bar items) that kinda work more like vim prompts ↵terminaldweller2023-08-031-3/+157
| | | | now, changing color on mode change)
* this change makes it so sb_position's statusbar item updates correctly with ↵terminaldweller2023-05-221-4/+10
| | | | vim_mode
* janky fixterminaldweller2022-04-271-3/+12
|
* clean up a bit of the content/style of doc patch by rking.Tom Feist2012-04-281-18/+20
|
* Merge pull request #21 from ryanjosephking/masterTom Feist2012-04-281-0/+31
|\ | | | | Add tip about Alt+_ window switching.
| * Add tip about Alt+_ window switching.rking2012-04-131-0/+31
| | | | | | | | | | | | | | - Paragraph about how it is better to use Alt+[0-9qwertyuio] than Esc+[0-9qwertyuio] - How to fix metaSendsEscape for xterm.
* | vim-mode: Document screen/tmux esc timeout issues and fix.Simon Ruderich2012-04-131-0/+15
|/
* bump vim_mode version number to 1.1.0 ready for tagging.vim_mode_1.1Tom Feist2012-02-031-2/+2
|
* vim_mode: change vim_mode_esc_buf_timeout setting to be of type TIME. DefaultTom Feist2012-02-021-1/+8
| | | | | | | remains at 10ms. TODO: people who have customised this already may experience Weird Thiiiings(tm). Test.
* fixed _warn that should have been _debug, peth++Tom Feist2011-07-021-1/+1
|
* small documentation fixupTom Feist2011-05-041-0/+5
|
* vim-mode/vim_mode: fixed the stupd bugs I missed by not testing. Might possiblyTom Feist2011-04-281-2/+2
| | | | work now.
* vim-mode/vim_mode: added new setting: 'esc_buf_timeout',Tom Feist2011-04-281-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.
* Merge branch 'dev' of github.com:shabble/irssi-scripts into devTom Feist2011-04-221-6/+9
|\ | | | | | | | | Conflicts: vim-mode/vim_mode.pl
| * vim-mode: Fix :map displaying <C-H> as mapped to <BS>.Simon Ruderich2011-02-121-0/+2
| |
| * vim-mode: Support ^H as BS key.Simon Ruderich2011-01-201-4/+5
| | | | | | | | | | | | Reported by peth. At the moment it's not working for custom mappings though!
* | vim-mode/vim_mode: FINAL doc update for now. Or Else.Tom Feist2011-04-222-10/+10
| |
* | vim-mode/vim_mode: docs: missed a bracket.Tom Feist2011-04-222-2/+2
| |
* | vim-mode/vim_mode: more doc updates about hooks and sbar items.Tom Feist2011-04-222-37/+59
| |
* | vim-mode/vim_mode: more documentation on how to use uberprompt hooks andTom Feist2011-04-222-2/+136
| | | | | | | | expandos to get vim_mode sbar items or variables.
* | vim-mode/vim_mode: added a new $vim_wins expando to be used instead of theTom Feist2011-04-221-16/+28
| | | | | | | | vim_windows statusbar item if desired.
* | vim-mode/vim_mode: added '$vim_cmd_mode' expando that contains the same info asTom Feist2011-04-181-4/+20
| | | | | | | | the vim_mode sbar item. Needs some cleanup though
* | vim-mode/vim_mode: all bullet points finally fired. I hope.Tom Feist2011-04-182-92/+176
| |
* | vim-mode/vim_mode: more docs update. Grar.Tom Feist2011-04-182-44/+16
| |
* | vim-mode/vim_mode: updated docs (only partially, to see how it looks)Tom Feist2011-04-182-75/+139
| |
* | updated a whole bunch of README files.Tom Feist2011-04-181-0/+444
| |
* | removed original markdown readmesTom Feist2011-04-181-327/+0
| |
* | vim-mode/vim_mode: more changes to docs and generator. Starting to look almostTom Feist2011-04-182-157/+233
| | | | | | | | readable now.
* | added vim-mode genereated readmeTom Feist2011-04-181-0/+284
| |
* | vim-mode/vim_mode: podified helpTom Feist2011-04-181-244/+412
| |
* | Merge branch 'map_leader'Tom Feist2011-04-081-32/+58
|\ \ | | | | | | | | | | | | Conflicts: vim-mode/vim_mode.pl
| * | vim-mode/vim_mode: cleanup of commands, and fix bug preventing ex mode fromTom Feist2011-04-061-32/+46
| | | | | | | | | | | | working (oops).
| * | vim_mode: C-c cancels ex mode. Start of <Leader> variable support.Tom Feist2011-04-061-3/+14
| | |
* | | vim-mode: minimal ex-mode tab-completion. Completes provided only the currentTom Feist2011-04-081-1/+9
|/ / | | | | | | prefix allows only 1 unique completion.
* | vim_mode: ex_hist documentation additions and cleanup.Tom Feist2011-04-061-7/+16
| |
* | vim_mode: fix ambiguous shift warning.ex_historyTom Feist2011-04-061-1/+1
| |
* | vim_mode: added history support to Ex mode. Can be scrolled backwards andTom Feist2011-04-061-17/+127
| | | | | | | | forwards using the arrow keys, and :eh shows the current history.
* | vim_mode: minor cleanup of constantsTom Feist2011-04-061-8/+8
| |
* | vim-mode: modify init sequence to bind (default) commands after settings areTom Feist2011-04-061-7/+13
| | | | | | | | loaded, otherwise lots of undef errors
* | modify all scripts to use the new script_is_loaded() function, since newerTom Feist2011-04-011-7/+1
| | | | | | | | versions of perl get upset at defined(%hash).
* | vim-mode/tests.pl: Add first real tests: h l 0 ^ $ <Space> <BS> f t.Simon Ruderich2011-03-051-16/+139
| | | | | | | | | | Merge testing/tests/003-vim-mode.t with vim-mode/tests.pl and remove it from testing/.
* | vim-mode/vim_mode: make :mapped commands use appropriate context when callingTom Feist2011-03-041-7/+27
| | | | | | | | irssi commands.
* | vim-mode: Add tests.pl.Simon Ruderich2011-03-011-0/+48
| |
* | vim-mode: Add irssi configuration directory used for testing.Simon Ruderich2011-03-013-0/+40
| | | | | | | | Contains default configuration with vim-mode statusbars.
* | defined check to prevent a warning in flush_input_buffer() [thanks DE1]Tom Feist2011-02-241-1/+1
| |
* | added some detail on FSM for input control, and how to detect <esc> sequences.Tom Feist2011-02-191-18/+55
| |
* | input.txt: Add some general ideas.Simon Ruderich2011-02-191-1/+18
| |
* | added input.txt where we can plan how the new input system will workTom Feist2011-02-191-0/+4
| |