normal.h (576B)
1 #pragma once 2 3 #include <stddef.h> // IWYU pragma: keep 4 5 #include "nvim/macros_defs.h" 6 #include "nvim/normal_defs.h" // IWYU pragma: keep 7 #include "nvim/pos_defs.h" // IWYU pragma: keep 8 #include "nvim/types_defs.h" // IWYU pragma: keep 9 10 /// Values for find_ident_under_cursor() 11 enum { 12 FIND_IDENT = 1, ///< find identifier (word) 13 FIND_STRING = 2, ///< find any string (WORD) 14 FIND_EVAL = 4, ///< include "->", "[]" and "." 15 }; 16 17 /// 'showcmd' buffer shared between normal.c and statusline.c 18 EXTERN char showcmd_buf[SHOWCMD_BUFLEN]; 19 20 #include "normal.h.generated.h"