mirror of
https://github.com/neovim/neovim.git
synced 2025-10-05 09:26:30 +00:00
18 lines
538 B
C
18 lines
538 B
C
#ifndef NVIM_MISC1_H
|
|
#define NVIM_MISC1_H
|
|
|
|
#include "nvim/vim.h"
|
|
#include "nvim/os/shell.h"
|
|
|
|
/* flags for open_line() */
|
|
#define OPENLINE_DELSPACES 1 /* delete spaces after cursor */
|
|
#define OPENLINE_DO_COM 2 /* format comments */
|
|
#define OPENLINE_KEEPTRAIL 4 /* keep trailing spaces */
|
|
#define OPENLINE_MARKFIX 8 /* fix mark positions */
|
|
#define OPENLINE_COM_LIST 16 /* format comments with list/2nd line indent */
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "misc1.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_MISC1_H
|