Explorar el Código

[Feature] Add LvimInfo command (#1269)

* feature: add LvimInfo command

* Move :LvimInfo to core/commands.lua
Pasi Bergman hace 4 años
padre
commit
625df947dc
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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)