neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

winfloat.h (384B)


      1 #pragma once
      2 
      3 #include "nvim/api/private/defs.h"  // IWYU pragma: keep
      4 #include "nvim/buffer_defs.h"  // IWYU pragma: keep
      5 #include "nvim/macros_defs.h"
      6 
      7 /// NW -> 0
      8 /// NE -> kFloatAnchorEast
      9 /// SW -> kFloatAnchorSouth
     10 /// SE -> kFloatAnchorSouth | kFloatAnchorEast
     11 EXTERN const char *const float_anchor_str[] INIT( = { "NW", "NE", "SW", "SE" });
     12 
     13 #include "winfloat.h.generated.h"