mirror of
https://github.com/neovim/neovim.git
synced 2026-02-05 03:51:21 +10:00
Add space around arithmetic operators '+' and '-'.
Remove space between back-to-back parentheses, i.e. ')(' vs. ') ('.
Remove space between '((' or '))' of control statements.
Add space between ')' and '{' of control statements.
Remove space between function name and '(' on function declaration.
Collapse empty blocks between '{' and '}'.
Remove newline at the end of the file.
Remove newline between 'enum' and '{'.
Remove newline between '}' and ')' in a function invocation.
Remove newline between '}' and 'while' of 'do' statement.
13 lines
217 B
C
13 lines
217 B
C
#ifndef NVIM_EX_SESSION_H
|
|
#define NVIM_EX_SESSION_H
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "nvim/ex_cmds_defs.h"
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "ex_session.h.generated.h"
|
|
#endif
|
|
|
|
#endif // NVIM_EX_SESSION_H
|