comparison src/optionstr.c @ 20609:054ba681412d v8.2.0858

patch 8.2.0858: not easy to require Lua modules Commit: https://github.com/vim/vim/commit/788fbb47079e6df4d4815d27273faf8390395029 Author: Bram Moolenaar <Bram@vim.org> Date: Sun May 31 14:08:12 2020 +0200 patch 8.2.0858: not easy to require Lua modules Problem: Not easy to require Lua modules. Solution: Improve use of Lua path. (Prabir Shrestha, closes https://github.com/vim/vim/issues/6098)
author Bram Moolenaar <Bram@vim.org>
date Sun, 31 May 2020 14:15:03 +0200
parents b582eb6ef192
children 9edb439adbea
comparison
equal deleted inserted replaced
20608:13d49684acf5 20609:054ba681412d
2400 mch_setmouse(FALSE); // switch mouse off 2400 mch_setmouse(FALSE); // switch mouse off
2401 else 2401 else
2402 setmouse(); // in case 'mouse' changed 2402 setmouse(); // in case 'mouse' changed
2403 } 2403 }
2404 2404
2405 #if defined(FEAT_LUA) || defined(PROTO)
2406 if (varp == &p_rtp)
2407 update_package_paths_in_lua();
2408 #endif
2409
2405 if (curwin->w_curswant != MAXCOL 2410 if (curwin->w_curswant != MAXCOL
2406 && (get_option_flags(opt_idx) & (P_CURSWANT | P_RALL)) != 0) 2411 && (get_option_flags(opt_idx) & (P_CURSWANT | P_RALL)) != 0)
2407 curwin->w_set_curswant = TRUE; 2412 curwin->w_set_curswant = TRUE;
2408 2413
2409 #ifdef FEAT_GUI 2414 #ifdef FEAT_GUI