diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-06-25 14:39:50 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-06-25 14:39:50 +0200 |
commit | 597a422416f37f8e22ed8f561667d6bab8814958 (patch) | |
tree | 8bada5798d608ac2a37b7f0ddbf7a24e8da4bd25 /src/proto/misc1.pro | |
parent | 15a35c4f4a1670dd6ca228068a451f78d2bf75e0 (diff) | |
download | vim-git-597a422416f37f8e22ed8f561667d6bab8814958.tar.gz |
updated for version 7.4.338v7.4.338
Problem: Cannot wrap lines taking indent into account.
Solution: Add the 'breakindent' option. (many authors, final improvements by
Christian Brabandt)
Diffstat (limited to 'src/proto/misc1.pro')
-rw-r--r-- | src/proto/misc1.pro | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/proto/misc1.pro b/src/proto/misc1.pro index 496d2e45a..274c7af46 100644 --- a/src/proto/misc1.pro +++ b/src/proto/misc1.pro @@ -2,9 +2,10 @@ int get_indent __ARGS((void)); int get_indent_lnum __ARGS((linenr_T lnum)); int get_indent_buf __ARGS((buf_T *buf, linenr_T lnum)); -int get_indent_str __ARGS((char_u *ptr, int ts)); +int get_indent_str __ARGS((char_u *ptr, int ts, int list)); int set_indent __ARGS((int size, int flags)); int get_number_indent __ARGS((linenr_T lnum)); +int get_breakindent_win __ARGS((win_T *wp, char_u *ptr)); int open_line __ARGS((int dir, int flags, int second_line_indent)); int get_leader_len __ARGS((char_u *line, char_u **flags, int backward, int include_space)); int get_last_leader_offset __ARGS((char_u *line, char_u **flags)); |