comparison src/option.c @ 11662:6ab627207f4c v8.0.0713

patch 8.0.0713: 'termkey' option not fully implemented commit https://github.com/vim/vim/commit/0daf843b4cad734df6be16573423206eae43028b Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jul 15 15:16:40 2017 +0200 patch 8.0.0713: 'termkey' option not fully implemented Problem: 'termkey' option not fully implemented. Solution: Add initialisation.
author Christian Brabandt <cb@256bit.org>
date Sat, 15 Jul 2017 15:30:03 +0200
parents 16dab1cd56f2
children 5cd9ba96561d
comparison
equal deleted inserted replaced
11661:e2df50e0f6c9 11662:6ab627207f4c
10899 #ifdef FEAT_CONCEAL 10899 #ifdef FEAT_CONCEAL
10900 to->wo_cocu = vim_strsave(from->wo_cocu); 10900 to->wo_cocu = vim_strsave(from->wo_cocu);
10901 to->wo_cole = from->wo_cole; 10901 to->wo_cole = from->wo_cole;
10902 #endif 10902 #endif
10903 #ifdef FEAT_TERMINAL 10903 #ifdef FEAT_TERMINAL
10904 to->wo_tk = vim_strsave(from->wo_tk);
10904 to->wo_tms = vim_strsave(from->wo_tms); 10905 to->wo_tms = vim_strsave(from->wo_tms);
10905 #endif 10906 #endif
10906 #ifdef FEAT_FOLDING 10907 #ifdef FEAT_FOLDING
10907 to->wo_fdc = from->wo_fdc; 10908 to->wo_fdc = from->wo_fdc;
10908 to->wo_fdc_save = from->wo_fdc_save; 10909 to->wo_fdc_save = from->wo_fdc_save;
10968 #endif 10969 #endif
10969 #ifdef FEAT_CONCEAL 10970 #ifdef FEAT_CONCEAL
10970 check_string_option(&wop->wo_cocu); 10971 check_string_option(&wop->wo_cocu);
10971 #endif 10972 #endif
10972 #ifdef FEAT_TERMINAL 10973 #ifdef FEAT_TERMINAL
10974 check_string_option(&wop->wo_tk);
10973 check_string_option(&wop->wo_tms); 10975 check_string_option(&wop->wo_tms);
10974 #endif 10976 #endif
10975 #ifdef FEAT_LINEBREAK 10977 #ifdef FEAT_LINEBREAK
10976 check_string_option(&wop->wo_briopt); 10978 check_string_option(&wop->wo_briopt);
10977 #endif 10979 #endif
11010 #endif 11012 #endif
11011 #ifdef FEAT_CONCEAL 11013 #ifdef FEAT_CONCEAL
11012 clear_string_option(&wop->wo_cocu); 11014 clear_string_option(&wop->wo_cocu);
11013 #endif 11015 #endif
11014 #ifdef FEAT_TERMINAL 11016 #ifdef FEAT_TERMINAL
11017 clear_string_option(&wop->wo_tk);
11015 clear_string_option(&wop->wo_tms); 11018 clear_string_option(&wop->wo_tms);
11016 #endif 11019 #endif
11017 } 11020 }
11018 11021
11019 /* 11022 /*