summaryrefslogtreecommitdiff
path: root/doc/fr
diff options
context:
space:
mode:
Diffstat (limited to 'doc/fr')
-rw-r--r--doc/fr/autogen/plugin_api/hdata.adoc9
-rw-r--r--doc/fr/weechat_plugin_api.fr.adoc121
-rw-r--r--doc/fr/weechat_scripting.fr.adoc5
3 files changed, 133 insertions, 2 deletions
diff --git a/doc/fr/autogen/plugin_api/hdata.adoc b/doc/fr/autogen/plugin_api/hdata.adoc
index d78b8f9c1..38839bff2 100644
--- a/doc/fr/autogen/plugin_api/hdata.adoc
+++ b/doc/fr/autogen/plugin_api/hdata.adoc
@@ -643,8 +643,11 @@ _next_buffer_   (pointer, hdata: "buffer_visited") +
| weechat
| [[hdata_completion]]<<hdata_completion,completion>>
| structure avec une complétion
-| -
-| _buffer_   (pointer, hdata: "buffer") +
+| _weechat_completions_ +
+_last_weechat_completion_ +
+
+| _plugin_   (pointer, hdata: "plugin") +
+_buffer_   (pointer, hdata: "buffer") +
_context_   (integer) +
_base_command_   (string) +
_base_command_arg_index_   (integer) +
@@ -663,6 +666,8 @@ _position_replace_   (integer) +
_diff_size_   (integer) +
_diff_length_   (integer) +
_partial_list_   (pointer) +
+_prev_completion_   (pointer, hdata: "completion") +
+_next_completion_   (pointer, hdata: "completion") +
| weechat
diff --git a/doc/fr/weechat_plugin_api.fr.adoc b/doc/fr/weechat_plugin_api.fr.adoc
index 3e9ba2012..a4f482d34 100644
--- a/doc/fr/weechat_plugin_api.fr.adoc
+++ b/doc/fr/weechat_plugin_api.fr.adoc
@@ -15257,6 +15257,127 @@ weechat.command_options(buffer, command, options)
rc = weechat.command("", "/une_commande paramètres", {"commands": "*,!exec"})
----
+[[completion]]
+=== Completion
+
+Fonctions pour compléter une ligne de commande.
+
+==== completion_new
+
+_WeeChat ≥ 2.9._
+
+Créer une complétion.
+
+Prototype :
+
+[source,C]
+----
+struct t_gui_completion *weechat_completion_new (struct t_gui_buffer *buffer);
+----
+
+Paramètres :
+
+* _buffer_ : pointeur vers le tampon
+
+Valeur de retour :
+
+* pointer to new completion
+
+Exemple en C :
+
+[source,C]
+----
+struct t_gui_completion *completion = weechat_completion_new (weechat_buffer_search_main ());
+----
+
+Script (Python) :
+
+[source,python]
+----
+# prototype
+completion = weechat.completion_new(buffer)
+
+# exemple
+completion = weechat.completion_new(weechat.buffer_search_main())
+----
+
+==== completion_search
+
+_WeeChat ≥ 2.9._
+
+Chercher les mots possibles à une position donnée d'une chaîne, dans le contexte
+de la complétion.
+
+Prototype :
+
+[source,C]
+----
+void weechat_completion_search (struct t_gui_completion *completion, const char *data,
+ int position, int direction);
+----
+
+Paramètres :
+
+* _completion_ : pointeur vers la complétion
+* _data_ : la chaîne à compléter
+* _position_ : index du caractère dans la chaîne à compléter (commence à 0)
+* _direction_ : 1 pour la complétion suivante, -1 pour la complétion précédente
+
+Exemple en C :
+
+[source,C]
+----
+struct t_gui_completion *completion = weechat_completion_new (weechat_buffer_search_main ());
+weechat_completion_search (completion, "/help filt", 10, 1);
+----
+
+Script (Python) :
+
+[source,python]
+----
+# prototype
+weechat.completion_search(completion, data, position, direction)
+
+# exemple
+completion = weechat.completion_new(weechat.buffer_search_main())
+weechat.completion_search(completion, "/help filt", 10, 1);
+----
+
+==== completion_free
+
+_WeeChat ≥ 2.9._
+
+Supprimer une complétion.
+
+Prototype :
+
+[source,C]
+----
+void weechat_completion_free (struct t_gui_completion *completion);
+----
+
+Paramètres :
+
+* _completion_ : pointeur vers la complétion
+
+Exemple en C :
+
+[source,C]
+----
+weechat_completion_free (completion);
+----
+
+Script (Python) :
+
+[source,python]
+----
+# prototype
+weechat.completion_free(completion)
+
+# exemple
+weechat.completion_free(completion)
+----
+
[[network]]
=== Réseau
diff --git a/doc/fr/weechat_scripting.fr.adoc b/doc/fr/weechat_scripting.fr.adoc
index 53273dcad..cc749d9ee 100644
--- a/doc/fr/weechat_scripting.fr.adoc
+++ b/doc/fr/weechat_scripting.fr.adoc
@@ -716,6 +716,11 @@ Liste des fonctions de l'API script :
command +
command_options
+| complétion |
+ completion_new +
+ completion_search +
+ completion_free
+
| infos |
info_get +
info_get_hashtable