mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 17:21:49 +00:00

Problem: Cannot use 'indentexpr' for Lisp indenting. Solution: Add the 'lispoptions' option.49846fb1a3
vim-patch:9.0.0762: build failure Problem: Build failure. Solution: Add missing change.4b082c4bd0
18 lines
508 B
C
18 lines
508 B
C
#ifndef NVIM_INDENT_H
|
|
#define NVIM_INDENT_H
|
|
|
|
#include "nvim/vim.h"
|
|
|
|
typedef int (*IndentGetter)(void);
|
|
|
|
// flags for set_indent()
|
|
#define SIN_CHANGED 1 // call changed_bytes() when line changed
|
|
#define SIN_INSERT 2 // insert indent before existing text
|
|
#define SIN_UNDO 4 // save line for undo before changing it
|
|
#define SIN_NOMARK 8 // don't adjust extmarks
|
|
|
|
#ifdef INCLUDE_GENERATED_DECLARATIONS
|
|
# include "indent.h.generated.h"
|
|
#endif
|
|
#endif // NVIM_INDENT_H
|