diff options
author | Raphael <glephunter@gmail.com> | 2023-01-09 14:22:10 +0800 |
---|---|---|
committer | Raphael <glephunter@gmail.com> | 2023-01-09 14:22:10 +0800 |
commit | ad34ab38dbe5ac89c7018097a4dbed033fc38f22 (patch) | |
tree | b13f66d25281bbc098d5c863de5397edf5548c7e | |
parent | e351ab179b3f4dbedd8e959dfcd972178d6a9e16 (diff) | |
download | rneovim-ad34ab38dbe5ac89c7018097a4dbed033fc38f22.tar.gz rneovim-ad34ab38dbe5ac89c7018097a4dbed033fc38f22.tar.bz2 rneovim-ad34ab38dbe5ac89c7018097a4dbed033fc38f22.zip |
fix: format
-rw-r--r-- | src/nvim/api/win_config.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/api/win_config.c b/src/nvim/api/win_config.c index 25bae725fc..4e8a9015c8 100644 --- a/src/nvim/api/win_config.c +++ b/src/nvim/api/win_config.c @@ -302,9 +302,9 @@ Dictionary nvim_win_get_config(Window window, Error *err) char *title_pos; if (config->title_pos == 0) { title_pos = "left"; - } else if (config->title_pos == 1){ + } else if (config->title_pos == 1) { title_pos = "center"; - }else { + } else { title_pos = "right"; } PUT(rv, "title_pos", CSTR_TO_OBJ(title_pos)); |