fix: format

This commit is contained in:
Raphael 2023-01-09 14:22:10 +08:00
parent e351ab179b
commit ad34ab38db

View File

@ -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));