neovim

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

statusline.h (513B)


      1 #pragma once
      2 
      3 #include <stddef.h>
      4 
      5 #include "nvim/highlight_defs.h"
      6 #include "nvim/macros_defs.h"
      7 #include "nvim/option_defs.h"  // IWYU pragma: keep
      8 #include "nvim/statusline_defs.h"  // IWYU pragma: keep
      9 #include "nvim/types_defs.h"  // IWYU pragma: keep
     10 
     11 /// Array defining what should be done when tabline is clicked
     12 EXTERN StlClickDefinition *tab_page_click_defs INIT( = NULL);
     13 /// Size of the tab_page_click_defs array
     14 EXTERN size_t tab_page_click_defs_size INIT( = 0);
     15 
     16 #include "statusline.h.generated.h"