comparison src/main.c @ 20836:2616c5a337e0 v8.2.0970

patch 8.2.0970: terminal properties are not available in Vim script Commit: https://github.com/vim/vim/commit/0c0eddd3ddd266bcc2036362fae7b2b8b9d2c7bf Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jun 13 15:47:25 2020 +0200 patch 8.2.0970: terminal properties are not available in Vim script Problem: Terminal properties are not available in Vim script. Solution: Add the terminalprops() function.
author Bram Moolenaar <Bram@vim.org>
date Sat, 13 Jun 2020 16:00:04 +0200
parents 1e2e81dbb958
children b32b67a108f2
comparison
equal deleted inserted replaced
20835:097884058719 20836:2616c5a337e0
404 404
405 init_mappings(); // set up initial mappings 405 init_mappings(); // set up initial mappings
406 406
407 init_highlight(TRUE, FALSE); // set the default highlight groups 407 init_highlight(TRUE, FALSE); // set the default highlight groups
408 TIME_MSG("init highlight"); 408 TIME_MSG("init highlight");
409
410 #if defined(FEAT_TERMRESPONSE)
411 init_term_props(TRUE);
412 #endif
409 413
410 #ifdef FEAT_EVAL 414 #ifdef FEAT_EVAL
411 // Set the break level after the terminal is initialized. 415 // Set the break level after the terminal is initialized.
412 debug_break_level = params.use_debug_break_level; 416 debug_break_level = params.use_debug_break_level;
413 #endif 417 #endif