diff options
author | Timo Sirainen <cras@irssi.org> | 2002-08-26 22:06:53 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2002-08-26 22:06:53 +0000 |
commit | ab8e46f19ddda192ea611a76c91583feb2f3d657 (patch) | |
tree | b2d68c1ded70d436c2fa1e73a66cab429abd1f89 /docs | |
parent | a5e01823c9934fd737d25cfff6c73b06a027a822 (diff) | |
download | irssi-ab8e46f19ddda192ea611a76c91583feb2f3d657.zip |
added, by pasky
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2893 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'docs')
-rw-r--r-- | docs/help/in/completion.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/docs/help/in/completion.in b/docs/help/in/completion.in new file mode 100644 index 00000000..0570ac30 --- /dev/null +++ b/docs/help/in/completion.in @@ -0,0 +1,28 @@ + +@SYNTAX:completion@ + +Irssi can "complete" some words for you - you can write just first few letters +of the word and press TAB (or any other key with action word_completion +assigned). Then, irssi will choose the most probable matching word and inserts +it to the command line. You can press TAB repetitively and irssi will replace +the chosen word with another possible words matching to the letters you wrote. + +The words chosen usually depend on their context - they can be filenames or +command names, but most frequently they are nicks of people on same channels as +you are. However, you can have global list of own completions, which apply to +all contexts. This command is dedicated to maintaining of such a list. + +Without any parameters, /COMPLETION displays list of all user completions. + +/COMPLETION [-auto] <prefix> <string> adds completion which gets triggered when +you press TAB (or any other key with action word_completion assigned) after +writing <prefix> specified and which expands to <string>. When -auto is +specified, the completion gets triggered even when you press SPACE or ENTER (or +any other key with action check_replaces assigned) after the <prefix>. If +there's already some <prefix> completion in the list, it will get replaced. + +/COMPLETION -delete <prefix> removes completion of <prefix> from the user +completion list. + +See also: BIND + |