summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/pack/dist/opt/nvim.undotree/plugin/undotree.lua
blob: 621ad3d444853adb90df7bef2651549c451b2a12 (plain)
1
2
3
4
5
6
7
8
if vim.g.loaded_undotree_plugin ~= nil then
  return
end
vim.g.loaded_undotree_plugin = true

vim.api.nvim_create_user_command('Undotree', function()
  require 'undotree'.open()
end, {})