diff options
| author | Maxime Coste <mawww@kakoune.org> | 2018-04-07 15:36:39 +1000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2018-04-07 16:27:50 +1000 |
| commit | 57baad4afde8d1bab4040c5a5cbe8a5b367bceba (patch) | |
| tree | 5e4f5fba17f8a6038301fcb129f36db102b0bd70 /src/shell_manager.cc | |
| parent | 6adb28ec1243adf13126ee47444d57dd2b842945 (diff) | |
Make FaceRegistry scoped
set-face now takes a scope argument, and faces can be overridden on
a buffer or window basis.
colorscheme apply on global scope, which should be good enough for
now.
Fixes #1411
Diffstat (limited to 'src/shell_manager.cc')
| -rw-r--r-- | src/shell_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shell_manager.cc b/src/shell_manager.cc index 2d0744e0..a6d4a954 100644 --- a/src/shell_manager.cc +++ b/src/shell_manager.cc @@ -268,7 +268,7 @@ std::pair<String, int> ShellManager::eval( client.print_status({ format("waiting for shell command to finish ({}s)", duration_cast<seconds>(wait_duration).count()), - get_face("Information") }); + context.faces()["Information"] }); client.redraw_ifn(); } timer.set_next_date(Clock::now() + wait_timeout); |
