diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-03-12 20:37:21 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-03-12 20:37:21 +0100 |
commit | 025a6b708a9bff54c73fb9c641b980da19e943a9 (patch) | |
tree | 9d1534b7d2637c7ef6c851a158c2eb99becefbfd /src/proto | |
parent | 1c46544412382db8b3203d6c78e550df885540bd (diff) | |
download | vim-025a6b708a9bff54c73fb9c641b980da19e943a9.zip |
patch 8.0.0453: adding fold marker creates new comment
Problem: Adding fold marker creates new comment.
Solution: Use an existing comment if possible. (LemonBoy, closes #1549)
Diffstat (limited to 'src/proto')
-rw-r--r-- | src/proto/ops.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/ops.pro b/src/proto/ops.pro index ef044e7ab..0740ddad3 100644 --- a/src/proto/ops.pro +++ b/src/proto/ops.pro @@ -38,6 +38,7 @@ void adjust_cursor_eol(void); int preprocs_left(void); int get_register_name(int num); void ex_display(exarg_T *eap); +char_u *skip_comment(char_u *line, int process, int include_space, int *is_comment); int do_join(long count, int insert_space, int save_undo, int use_formatoptions, int setmark); void op_format(oparg_T *oap, int keep_cursor); void op_formatexpr(oparg_T *oap); |