diff options
| author | Maxime Coste <mawww@kakoune.org> | 2019-06-18 22:18:17 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2019-06-19 23:04:16 +1000 |
| commit | 8b2906a14d3395a6619c7e40d3206b75eef11b25 (patch) | |
| tree | d559789c90745dd538751bd163791860ddfecb48 /src/window.cc | |
| parent | 59e43c8f0c2d125952c8bad3b1b0c9053046926d (diff) | |
Refactor option_to_string quoting support, introduce Quoting::Raw
Diffstat (limited to 'src/window.cc')
| -rw-r--r-- | src/window.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.cc b/src/window.cc index f44ea92b..29ac73de 100644 --- a/src/window.cc +++ b/src/window.cc @@ -338,7 +338,7 @@ void Window::clear_display_buffer() void Window::on_option_changed(const Option& option) { run_hook_in_own_context(Hook::WinSetOption, format("{}={}", option.name(), - option.get_as_string(Quoting::Kakoune))); + option.get_as_string(Quoting::Raw))); // an highlighter might depend on the option, so we need to redraw force_redraw(); } |
