1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-04 16:53:14 +02:00

script: add option "reload" for command /script, fix completion of /script, add examples in /help script

This commit is contained in:
Sebastien Helleu
2012-08-17 09:55:02 +02:00
parent 43894db0bc
commit 2485831d4a
18 changed files with 436 additions and 126 deletions
+9 -1
View File
@@ -3,7 +3,7 @@
........................................
/script list
show <script>
load|unload <script> [<script>...]
load|unload|reload <script> [<script>...]
install|remove|hold <script> [<script>...]
upgrade
update
@@ -12,6 +12,7 @@
show: show detailed info about a script
load: load script(s)
unload: unload script(s)
reload: reload script(s)
install: install/upgrade script(s)
remove: remove script(s)
hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed)
@@ -44,5 +45,12 @@ Input allowed on script buffer:
s: reset sort (use default sort)
word(s) filter scripts: search word(s) in scripts (description, tags, ...)
* remove filter
Examples:
/script install iset.pl buffers.pl
/script remove iset.pl
/script hold urlserver.py
/script reload urlserver
/script upgrade
........................................
+9 -1
View File
@@ -3,7 +3,7 @@
........................................
/script list
show <script>
load|unload <script> [<script>...]
load|unload|reload <script> [<script>...]
install|remove|hold <script> [<script>...]
upgrade
update
@@ -12,6 +12,7 @@
show: show detailed info about a script
load: load script(s)
unload: unload script(s)
reload: reload script(s)
install: install/upgrade script(s)
remove: remove script(s)
hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed)
@@ -44,5 +45,12 @@ Input allowed on script buffer:
s: reset sort (use default sort)
word(s) filter scripts: search word(s) in scripts (description, tags, ...)
* remove filter
Examples:
/script install iset.pl buffers.pl
/script remove iset.pl
/script hold urlserver.py
/script reload urlserver
/script upgrade
........................................
+9 -1
View File
@@ -3,7 +3,7 @@
........................................
/script list
show <script>
load|unload <script> [<script>...]
load|unload|reload <script> [<script>...]
install|remove|hold <script> [<script>...]
upgrade
update
@@ -12,6 +12,7 @@
show: afficher des infos détaillées sur le script
load: charger un ou plusieurs scripts
unload: décharger un ou plusieurs scripts
reload: recharger un ou plusieurs scripts
install: installer/mettre à jour un ou plusieurs scripts
remove: supprimer un ou plusieurs scripts
hold: figer/défiger un ou plusieurs scripts (un script figé ne sera plus mis à jour et ne peut pas être supprimé)
@@ -44,5 +45,12 @@ Entrée autorisée sur le tampon des scripts :
s: réinitialiser le tri (utiliser le tri par défaut)
word(s) filtrer les scripts: recherche du/des mot(s) dans les scripts (description, étiquettes, ...)
* supprimer le filtre
Exemples:
/script install iset.pl buffers.pl
/script remove iset.pl
/script hold urlserver.py
/script reload urlserver
/script upgrade
........................................
+9 -1
View File
@@ -3,7 +3,7 @@
........................................
/script list
show <script>
load|unload <script> [<script>...]
load|unload|reload <script> [<script>...]
install|remove|hold <script> [<script>...]
upgrade
update
@@ -12,6 +12,7 @@
show: show detailed info about a script
load: load script(s)
unload: unload script(s)
reload: reload script(s)
install: install/upgrade script(s)
remove: remove script(s)
hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed)
@@ -44,5 +45,12 @@ Input allowed on script buffer:
s: reset sort (use default sort)
word(s) filter scripts: search word(s) in scripts (description, tags, ...)
* remove filter
Examples:
/script install iset.pl buffers.pl
/script remove iset.pl
/script hold urlserver.py
/script reload urlserver
/script upgrade
........................................
+9 -1
View File
@@ -3,7 +3,7 @@
........................................
/script list
show <script>
load|unload <script> [<script>...]
load|unload|reload <script> [<script>...]
install|remove|hold <script> [<script>...]
upgrade
update
@@ -12,6 +12,7 @@
show: show detailed info about a script
load: load script(s)
unload: unload script(s)
reload: reload script(s)
install: install/upgrade script(s)
remove: remove script(s)
hold: hold/unhold script(s) (a script held will not be upgraded any more and cannot be removed)
@@ -44,5 +45,12 @@ Input allowed on script buffer:
s: reset sort (use default sort)
word(s) filter scripts: search word(s) in scripts (description, tags, ...)
* remove filter
Examples:
/script install iset.pl buffers.pl
/script remove iset.pl
/script hold urlserver.py
/script reload urlserver
/script upgrade
........................................