nvim-neorg/neorg

Todo list parents not updating

TheNoeTrevino opened this issue · 2 comments

Prerequisites

  • I am using the latest stable release of Neovim
  • I am using the latest version of the plugin

Neovim Version

nvim --version NVIM v0.10.1 Build type: Release LuaJIT 2.1.1724232689

Neorg setup

return {
  "nvim-neorg/neorg",
  lazy = false,
  version = "*",
  config = function()
    require("neorg").setup({
      dependencies = { { "nvim-lua/plenary.nvim" }, { "nvim-neorg/neorg-telescope" } },
      load = {
        ["core.defaults"] = {},
        ["core.concealer"] = {},
        ["core.dirman"] = {
          config = {
            workspaces = {
              school = "~/.neorg/school",
              study = "~/.neorg/study",
            },
            default_workspace = "study",
          },
        },
        ["core.completion"] = {
          config = {
            engine = "nvim-cmp",
          },
        },
        ["core.integrations.nvim-cmp"] = {},
        ["core.integrations.telescope"] = {
          config = {
            insert_file_link = {
              show_title_preview = true,
            },
          },
        },
      },
    })
    vim.wo.foldlevel = 99
    vim.wo.conceallevel = 2
    local wk = require("which-key")

    wk.add({
      { "<leader>sn", "<Plug>(neorg.telescope.find_norg_files)", desc = "Search Notes", mode = "n" },
      { "<localleader>if", "<Plug>(neorg.telescope.insert_file_link)", desc = "[F]ile link", mode = "n" },
      { "<localleader>if", "<Plug>(neorg.telescope.insert_file_link)", desc = "[F]ile link", mode = "n" },
      { "<leader>n", group = "[N]otes & [Notifs]   " },
      { "<localleader>l", group = "[L]ists  " },
      { "<localleader>c", group = "[C]ode Block  " },
      { "<localleader>i", group = "[I]nsert  " },
      { "<localleader>n", group = "[N]ew Note  " },
      { "<localleader>t", group = "[T]ypes  " },
    })
  end,
}

Actual behavior

Screenshot 2024-08-27 at 12 40 40 PM Screenshot 2024-08-27 at 12 39 07 PM

Here is the current behavior. For some reason the parent todo lists are not updating like they do in the youtube videos I have seen. I have been trouble shooting for hours! I am not sure what to do since I am new at this plugin, and the 'progress' is updating accordingly.

Note: This works the other way around. If i set the parent as pending, every child element gets set as pending as well.

Expected behavior

The parent should update accordingly

Steps to reproduce

copy and paste code, but not sure that will work from what I have seen online. I cant find anyone else with my issue

Potentially conflicting plugins

No response

Other information

I updated my parsers

Help

No

Implementation help

No response

I stumbled on the same issue.