From 8e555cb992a77a540bc211a6c5bbe510e7bcb23d Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sun, 29 Apr 2018 20:38:47 +1000 Subject: [PATCH] JsonUI: add support for set_ui_options RPC call As discussed on #2019 --- doc/json_ui.asciidoc | 2 ++ src/json_ui.cc | 18 +++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/doc/json_ui.asciidoc b/doc/json_ui.asciidoc index cdfae701..f6f9b02f 100644 --- a/doc/json_ui.asciidoc +++ b/doc/json_ui.asciidoc @@ -49,6 +49,8 @@ Here are the requests that can be written by the json ui on stdout: mode can be: - prompt: the coordinate line should be 0, and the cursor is in the prompt area - buffer: the cursor is in the buffer display area +* set_ui_options(Map options) + called when ui_options changed with a map of options name to option values * refresh(bool force) The requests that the json ui can interpret on stdin are: diff --git a/src/json_ui.cc b/src/json_ui.cc index 322085ac..55b21e81 100644 --- a/src/json_ui.cc +++ b/src/json_ui.cc @@ -20,19 +20,19 @@ namespace Kakoune template String to_json(ArrayView array) { - String res; - for (auto& elem : array) - { - if (not res.empty()) - res += ", "; - res += to_json(elem); - } - return "[" + res + "]"; + return "[" + join(array | transform([](auto&& elem) { return to_json(elem); }), ',', false) + "]"; } template String to_json(const Vector& vec) { return to_json(ArrayView{vec}); } +template +String to_json(const HashMap& map) +{ + return "{" + join(map | transform([](auto&& i) { return format("{}: {}", to_json(i.key), to_json(i.value)); }), + ',', false) + "}"; +} + String to_json(int i) { return to_string(i); } String to_json(bool b) { return b ? "true" : "false"; } String to_json(StringView str) @@ -232,7 +232,7 @@ void JsonUI::refresh(bool force) void JsonUI::set_ui_options(const Options& options) { - // rpc_call("set_ui_options", options); + rpc_call("set_ui_options", options); } DisplayCoord JsonUI::dimensions()