1 #ifndef VIFM_TESTS__KEYS__BUILTIN_KEYS_H__
2 #define VIFM_TESTS__KEYS__BUILTIN_KEYS_H__
3 
4 extern int last;                  /* 1 = k, 2 = j, 3 = yank, 4 = delete */
5 extern int last_command_count;    /* for ctrl+w <, dd and d + selector */
6 extern int last_command_register; /* for dd */
7 extern int last_selector_count;   /* for k */
8 extern int key_is_mapped;         /* for : and m */
9 extern int mapping_state;         /* for : and m */
10 
11 void init_builtin_keys(void);
12 
13 #endif /* VIFM_TESTS__KEYS__BUILTIN_KEYS_H__ */
14 
15 /* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */
16 /* vim: set cinoptions+=t0 filetype=c : */
17