From 76a30f2bd0f4e5abe906eabcdce092931d712be3 Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Fri, 1 Dec 2023 16:37:09 +0800 Subject: refactor: move float_relative_str[] to nvim_win_get_config() (#26344) It's only used in one place, as it's usually conveyed as non-string. --- src/nvim/winfloat.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/nvim/winfloat.h') diff --git a/src/nvim/winfloat.h b/src/nvim/winfloat.h index 877a12a9e7..6e30c8da69 100644 --- a/src/nvim/winfloat.h +++ b/src/nvim/winfloat.h @@ -10,10 +10,6 @@ /// SE -> kFloatAnchorSouth | kFloatAnchorEast EXTERN const char *const float_anchor_str[] INIT( = { "NW", "NE", "SW", "SE" }); -/// Keep in sync with FloatRelative in buffer_defs.h -EXTERN const char *const float_relative_str[] -INIT( = { "editor", "win", "cursor", "mouse" }); - #ifdef INCLUDE_GENERATED_DECLARATIONS # include "winfloat.h.generated.h" #endif -- cgit