diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2020-01-26 05:08:12 -0800 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2020-01-26 17:13:00 -0800 |
commit | 90486278061f114eba8703d2f058678bb6e247e6 (patch) | |
tree | 5e7e17b2813e39342088b4212cf2fb0a308e3dd2 | |
parent | 2070c082b516361161dba04e72fcaafad8bc3860 (diff) | |
download | rneovim-90486278061f114eba8703d2f058678bb6e247e6.tar.gz rneovim-90486278061f114eba8703d2f058678bb6e247e6.tar.bz2 rneovim-90486278061f114eba8703d2f058678bb6e247e6.zip |
lint
-rw-r--r-- | src/nvim/ex_docmd.c | 38 | ||||
-rw-r--r-- | src/nvim/option_defs.h | 2 |
2 files changed, 19 insertions, 21 deletions
diff --git a/src/nvim/ex_docmd.c b/src/nvim/ex_docmd.c index 2b952b3f15..47c42c001e 100644 --- a/src/nvim/ex_docmd.c +++ b/src/nvim/ex_docmd.c @@ -9210,7 +9210,7 @@ static int makeopens(FILE *fd, char_u *dirnow) // temporarily to avoid that. if (p_stal == 1 && first_tabpage->tp_next != NULL) { PUTLINE_FAIL("set stal=2"); - restore_stal = TRUE; + restore_stal = true; } // @@ -9482,18 +9482,18 @@ static int ses_win_rec(FILE *fd, frame_T *fr) // to split. if (fprintf(fd, "%s%s", "wincmd _ | wincmd |\n", - (fr->fr_layout == FR_COL ? "split\n" : "vsplit\n") - ) < 0) { + (fr->fr_layout == FR_COL ? "split\n" : "vsplit\n")) < 0) { return FAIL; } - ++count; + count++; } // Go back to the first window. if (count > 0 && (fprintf(fd, fr->fr_layout == FR_COL - ? "%dwincmd k" : "%dwincmd h", count) < 0 - || put_eol(fd) == FAIL)) + ? "%dwincmd k" : "%dwincmd h", count) < 0 + || put_eol(fd) == FAIL)) { return FAIL; + } // Recursively create frames/windows in each window of this column or row. frc = ses_skipframe(fr->fr_child); @@ -9501,8 +9501,9 @@ static int ses_win_rec(FILE *fd, frame_T *fr) ses_win_rec(fd, frc); frc = ses_skipframe(frc->fr_next); // Go to next window. - if (frc != NULL && put_line(fd, "wincmd w") == FAIL) + if (frc != NULL && put_line(fd, "wincmd w") == FAIL) { return FAIL; + } } } return OK; @@ -9694,9 +9695,9 @@ put_view( if (f == FAIL) return FAIL; - /* - * Save Folds when 'buftype' is empty and for help files. - */ + // + // Save Folds when 'buftype' is empty and for help files. + // if ((*flagp & SSOP_FOLDS) && wp->w_buffer->b_ffname != NULL && (bt_normal(wp->w_buffer) || bt_help(wp->w_buffer)) @@ -9705,11 +9706,10 @@ put_view( return FAIL; } - /* - * Set the cursor after creating folds, since that moves the cursor. - */ + // + // Set the cursor after creating folds, since that moves the cursor. + // if (do_cursor) { - // Restore the cursor line in the file and relatively in the // window. Don't use "G", it changes the jumplist. if (fprintf(fd, @@ -9718,14 +9718,12 @@ put_view( "if s:l < 1 | let s:l = 1 | endif\n" "exe s:l\n" "normal! zt\n" - "%" PRId64 "\n" - , + "%" PRId64 "\n", (int64_t)wp->w_cursor.lnum, (int64_t)(wp->w_cursor.lnum - wp->w_topline), (int64_t)(wp->w_height_inner / 2), (int64_t)wp->w_height_inner, - (int64_t)wp->w_cursor.lnum - ) < 0) { + (int64_t)wp->w_cursor.lnum) < 0) { return FAIL; } // Restore the cursor column and left offset when not wrapping. @@ -9791,8 +9789,8 @@ static int ses_arglist(FILE *fd, char *cmd, garray_T *gap, int fullname, return FAIL; } PUTLINE_FAIL("%argdel"); - for (int i = 0; i < gap->ga_len; ++i) { - /* NULL file names are skipped (only happens when out of memory). */ + for (int i = 0; i < gap->ga_len; i++) { + // NULL file names are skipped (only happens when out of memory). s = alist_name(&((aentry_T *)gap->ga_data)[i]); if (s != NULL) { if (fullname) { diff --git a/src/nvim/option_defs.h b/src/nvim/option_defs.h index 5f7d0b0614..227c0fec4d 100644 --- a/src/nvim/option_defs.h +++ b/src/nvim/option_defs.h @@ -578,7 +578,7 @@ static char *(p_ssop_values[]) = { # define SSOP_BLANK 0x080 # define SSOP_GLOBALS 0x100 # define SSOP_SLASH 0x200 -# define SSOP_UNIX 0x400 /* Deprecated, not used. */ +# define SSOP_UNIX 0x400 // Deprecated, not used. # define SSOP_SESDIR 0x800 # define SSOP_CURDIR 0x1000 # define SSOP_FOLDS 0x2000 |