Skip to content

Commit

Permalink
patch 8.0.0713: 'termkey' option not fully implemented
Browse files Browse the repository at this point in the history
Problem:    'termkey' option not fully implemented.
Solution:   Add initialisation.
  • Loading branch information
brammool committed Jul 15, 2017
1 parent 1b0675c commit 0daf843
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/option.c
Expand Up @@ -10901,6 +10901,7 @@ copy_winopt(winopt_T *from, winopt_T *to)
to->wo_cole = from->wo_cole; to->wo_cole = from->wo_cole;
#endif #endif
#ifdef FEAT_TERMINAL #ifdef FEAT_TERMINAL
to->wo_tk = vim_strsave(from->wo_tk);
to->wo_tms = vim_strsave(from->wo_tms); to->wo_tms = vim_strsave(from->wo_tms);
#endif #endif
#ifdef FEAT_FOLDING #ifdef FEAT_FOLDING
Expand Down Expand Up @@ -10970,6 +10971,7 @@ check_winopt(winopt_T *wop UNUSED)
check_string_option(&wop->wo_cocu); check_string_option(&wop->wo_cocu);
#endif #endif
#ifdef FEAT_TERMINAL #ifdef FEAT_TERMINAL
check_string_option(&wop->wo_tk);
check_string_option(&wop->wo_tms); check_string_option(&wop->wo_tms);
#endif #endif
#ifdef FEAT_LINEBREAK #ifdef FEAT_LINEBREAK
Expand Down Expand Up @@ -11012,6 +11014,7 @@ clear_winopt(winopt_T *wop UNUSED)
clear_string_option(&wop->wo_cocu); clear_string_option(&wop->wo_cocu);
#endif #endif
#ifdef FEAT_TERMINAL #ifdef FEAT_TERMINAL
clear_string_option(&wop->wo_tk);
clear_string_option(&wop->wo_tms); clear_string_option(&wop->wo_tms);
#endif #endif
} }
Expand Down
2 changes: 2 additions & 0 deletions src/version.c
Expand Up @@ -764,6 +764,8 @@ static char *(features[]) =


static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
713,
/**/ /**/
712, 712,
/**/ /**/
Expand Down

0 comments on commit 0daf843

Please sign in to comment.