Après cet édito de Sobika, je me pose la question de la compétence de Ravalomanana. Il avait le pouvoir, pourquoi n'a-t-il pas simplement arrangé le dossier pour qu'on ne puisse pas l'embeter plus tard? En étant un président de la république, c'est extremement facile de demander à la chambre de commerce de valider ce dossier comme étant réglé définitivement! Mais non, il n'a pas fait les choses dans ce sens...
Defining vim as global outside of Neovim When developing plugins for Neovim, particularly in Lua, developers often encounter the "Undefined global vim" warning. This warning can be a nuisance and disrupt the development workflow. However, there is a straightforward solution to this problem by configuring the Lua Language Server Protocol (LSP) to recognize 'vim' as a global variable. Getting "Undefined global vim" warning when developing Neovim plugin While developing Neovim plugins using Lua, the Lua language server might not recognize the 'vim' namespace by default. This leads to warnings about 'vim' being an undefined global variable. These warnings are not just annoying but can also clutter the development environment with unnecessary alerts, potentially hiding other important warnings or errors. Defining vim as global in Lua LSP configuration to get rid of the warning To resolve the "Undefined global vi...