Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Stop working after pressing F1 on popup window #429

Open
1 task done
aeros281 opened this issue Mar 2, 2024 · 1 comment
Open
1 task done

[Bug]: Stop working after pressing F1 on popup window #429

aeros281 opened this issue Mar 2, 2024 · 1 comment
Assignees
Labels
bug Something isn't working

Comments

@aeros281
Copy link

aeros281 commented Mar 2, 2024

Similar Issues

  • Before filing, I have searched for similar issues.

Neovim Version

NVIM v0.9.2
Build type: Release
LuaJIT 2.1.0-beta3

   system vimrc file: "$VIM/sysinit.vim"
  fall-back for $VIM: "/opt/homebrew/Cellar/neovim/0.9.2/share/nvim"

Run :checkhealth for more info

Steps to Reproduce

  1. Open neovim
  2. Type :Legendary, waiting for the popup to appear.
  3. Press F1, neovim built-in help window appear.
  4. Close the window using :q.
  5. Type :Legendary.

Expected Behavior

Legendary popup window to appear.

Actual Behavior

Nothing happen.

Minimal Configuration to Reproduce

local root = vim.fn.fnamemodify('./.repro', ':p')

-- set stdpaths to use .repro
for _, name in ipairs({ 'config', 'data', 'state', 'cache' }) do
  vim.env[('XDG_%s_HOME'):format(name:upper())] = root .. '/' .. name
end

-- bootstrap lazy
local lazypath = root .. '/plugins/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
  vim.fn.system({
    'git',
    'clone',
    '--filter=blob:none',
    '--single-branch',
    'https://github.com/folke/lazy.nvim.git',
    lazypath,
  })
end
vim.opt.runtimepath:prepend(lazypath)

-- install plugins
local plugins = {
  -- do not remove the colorscheme! it makes testing nicer
  'folke/tokyonight.nvim',
  {
    'mrjones2014/legendary.nvim',
    dependencies = {
      -- place your `vim.ui.select()` handler plugin here
      -- for example:
      -- 'nvim-telescope/telescope.nvim',
      -- 'stevearc/dressing.nvim',
    },
  },
  -- add any other pugins here
}

require('lazy').setup(plugins, {
  root = root .. '/plugins',
})

require('dressing').setup()

require('legendary').setup({
  -- add any options here
})

-- add anything else here
vim.opt.termguicolors = true
-- do not remove the colorscheme! it makes testing nicer
vim.cmd([[colorscheme tokyonight]])

Output from :LegendaryLog

:LegendaryLog output (click to expand)
[Sat Mar  2 10:05:40 2024][legendary.nvim] Took 1.519042 ms to filter items in context.
[Sat Mar  2 10:05:40 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 10:05:40 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 10:05:40 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 10:05:40 2024][legendary.nvim] Launching select UI
[Sat Mar  2 10:02:03 2024][legendary.nvim] Took 0.87 ms to filter items in context.
[Sat Mar  2 10:02:03 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 10:02:03 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 10:02:03 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 10:02:03 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 10:02:03 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 10:02:03 2024][legendary.nvim] Launching select UI
[Sat Mar  2 10:02:00 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 10:02:00 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:59:37 2024][legendary.nvim] Took 0.47975 ms to filter items in context.
[Sat Mar  2 09:59:37 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:59:37 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:59:37 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:59:37 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:59:19 2024][legendary.nvim] Took 0.885125 ms to filter items in context.
[Sat Mar  2 09:59:19 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:59:19 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:59:19 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:59:19 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:59:19 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:59:19 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:59:14 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:59:14 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:58:50 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:58:50 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:58:30 2024][legendary.nvim] Took 0.867833 ms to filter items in context.
[Sat Mar  2 09:58:30 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:58:30 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:58:30 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:58:30 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:58:19 2024][legendary.nvim] Took 1.704917 ms to filter items in context.
[Sat Mar  2 09:58:19 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:58:19 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:58:19 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:58:19 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:58:19 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:58:19 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:58:18 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:58:18 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:57:44 2024][legendary.nvim] Took 2.503875 ms to filter items in context.
[Sat Mar  2 09:57:44 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:57:44 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:57:44 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:57:44 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:57:44 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:57:44 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:57:43 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:57:43 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:53:57 2024][legendary.nvim] Took 0.924875 ms to filter items in context.
[Sat Mar  2 09:53:57 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:53:57 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:53:57 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:53:57 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:53:45 2024][legendary.nvim] Took 0.603375 ms to filter items in context.
[Sat Mar  2 09:53:45 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:53:45 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:53:45 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:53:45 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:53:45 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:53:45 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:53:44 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:53:44 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:53:13 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:53:13 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:52:47 2024][legendary.nvim] Took 0.4655 ms to filter items in context.
[Sat Mar  2 09:52:47 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:52:47 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:52:47 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:52:47 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:52:47 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:52:47 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:52:44 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:52:43 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:52:33 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:52:33 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:51:15 2024][legendary.nvim] Took 1.025084 ms to filter items in context.
[Sat Mar  2 09:51:15 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:51:15 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:51:15 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:51:15 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:51:05 2024][legendary.nvim] Took 0.353875 ms to filter items in context.
[Sat Mar  2 09:51:05 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:51:05 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:51:05 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:51:05 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:58 2024][legendary.nvim] Took 2.911625 ms to filter items in context.
[Sat Mar  2 09:50:58 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:58 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:58 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:58 2024][legendary.nvim] Frecency database initialized.
[Sat Mar  2 09:50:58 2024][legendary.nvim] Initializing frecency database...
[Sat Mar  2 09:50:58 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:58 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:50:57 2024][legendary.nvim] setup() parsed and applied all configuration.
[Sat Mar  2 09:50:52 2024][legendary.nvim] Took 0.840208 ms to filter items in context.
[Sat Mar  2 09:50:52 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:52 2024][legendary.nvim] Took 0.676833 ms to filter items in context.
[Sat Mar  2 09:50:52 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:52 2024][legendary.nvim] Took 0.733625 ms to filter items in context.
[Sat Mar  2 09:50:52 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:52 2024][legendary.nvim] Took 4.522834 ms to filter items in context.
[Sat Mar  2 09:50:52 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:52 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:51 2024][legendary.nvim] Took 1.165584 ms to filter items in context.
[Sat Mar  2 09:50:51 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:51 2024][legendary.nvim] Took 1.299417 ms to filter items in context.
[Sat Mar  2 09:50:51 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:51 2024][legendary.nvim] Took 0.809459 ms to filter items in context.
[Sat Mar  2 09:50:51 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:51 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:50 2024][legendary.nvim] Took 0.631792 ms to filter items in context.
[Sat Mar  2 09:50:50 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:50 2024][legendary.nvim] Took 1.114834 ms to filter items in context.
[Sat Mar  2 09:50:50 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:50 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:50:49 2024][legendary.nvim] Took 0.514833 ms to filter items in context.
[Sat Mar  2 09:50:49 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:50:49 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:50:49 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:50:49 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:49:24 2024][legendary.nvim] Took 0.524458 ms to filter items in context.
[Sat Mar  2 09:49:24 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:49:24 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }
}
[Sat Mar  2 09:49:24 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 1,
    cmd_data = "item_count"
  }
}
[Sat Mar  2 09:49:24 2024][legendary.nvim] Launching select UI
[Sat Mar  2 09:49:24 2024][legendary.nvim] Took 0.796125 ms to filter items in context.
[Sat Mar  2 09:49:24 2024][legendary.nvim] Computed item scores: {
  ["':LedgDiffView Open diff view'"] = 0,
  ["':LedgDiffViewOff Close diff view'"] = 0,
  ["':LedgGitHub Github/GitLab open file URL'"] = 32,
  ["':LedgGitHubCommitHash Github/GitLab open commit URL'"] = 6,
  ["':LedgLazy Open Lazy config'"] = 84,
  ["':LedgToggleInlayHints Toggle Rust inlay hints'"] = 0,
  ["':LedgYamlJump View YAML (Telescope)'"] = 8,
  ["':LedgYamlView View YAML'"] = 8,
  ["':LoadBookmarks Refresh bookmarks'"] = 24,
  ["':LoadBookmarks Toggle inlay hints'"] = 4,
  ["':RunLazyGit Open lazy git'"] = 8,
  ["':SaveBookmarks Save current bookmarks'"] = 28,
  ["':SaveBookmarks Toggle inlay hints'"] = 12,
  ["':delmarks {mark} Remove marks'"] = 0,
  ["'Advanced git search'"] = 6,
  ["'Find all references'"] = 2,
  ["'Format current buffer'"] = 11,
  ["'Open lazy git'"] = 26,
  ["'Open neoclip (Telescope)'"] = 8,
  ["'Redo'"] = 0,
  ["'Reopen last opened file'"] = 4
}
[Sat Mar  2 09:49:24 2024][legendary.nvim] Performing SQL transaction with following data: {
  params = {},
  query = {
    cmd = 4,
    cmd_data = "SELECT id, item_id, CAST((julianday('now') - julianday(timestamp)) * 24 * 60 AS INTEGER) AS age FROM timestamps;"
  }

Additional Details and/or Screenshots

The original problem happened because I binded F1 key to :Legendary and accidentally press the key twice.
Even if I bind F1 to <nop>, when the focus is on :Legendary popup F1 key still open help window.

@aeros281 aeros281 added the bug Something isn't working label Mar 2, 2024
@mrjones2014
Copy link
Owner

Your minimal configuration to reproduce does not work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants