Skip to content

Commit

Permalink
patch 8.1.2104: the normal.c file is too big
Browse files Browse the repository at this point in the history
Problem:    The normal.c file is too big.
Solution:   Move do_pending_operator() to ops.c. (Yegappan Lakshmanan,
            closes #4999).
  • Loading branch information
brammool committed Sep 30, 2019
1 parent 18223a5 commit 792cf5e
Show file tree
Hide file tree
Showing 6 changed files with 963 additions and 992 deletions.
7 changes: 7 additions & 0 deletions src/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -778,6 +778,13 @@ EXTERN int VIsual_mode INIT(= 'v');
EXTERN int redo_VIsual_busy INIT(= FALSE);
// TRUE when redoing Visual

/*
* The Visual area is remembered for reselection.
*/
EXTERN int resel_VIsual_mode INIT(= NUL); // 'v', 'V', or Ctrl-V
EXTERN linenr_T resel_VIsual_line_count; // number of lines
EXTERN colnr_T resel_VIsual_vcol; // nr of cols or end col

#ifdef FEAT_MOUSE
/*
* When pasting text with the middle mouse button in visual mode with
Expand Down
Loading

0 comments on commit 792cf5e

Please sign in to comment.