Sfoglia il codice sorgente

[Feature] Add LvimInfo command (#1269)

* feature: add LvimInfo command

* Move :LvimInfo to core/commands.lua
Pasi Bergman 4 anni fa
parent
commit
625df947dc
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  1. 2 0
      lua/core/commands.lua

+ 2 - 0
lua/core/commands.lua

@@ -10,6 +10,8 @@ M.defaults = {
     endif
   endfunction
   ]],
+  -- :LvimInfo
+  [[command! LvimInfo lua require('core.info').toggle_popup(vim.bo.filetype)]],
 }
 
 M.load = function(commands)