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

Todo list parents not updating #1565

Open
2 tasks done
TheNoeTrevino opened this issue Aug 27, 2024 · 0 comments
Open
2 tasks done

Todo list parents not updating #1565

TheNoeTrevino opened this issue Aug 27, 2024 · 0 comments
Labels
bug Issues related to bugs. Please attach a severity, a priority and category with this label.

Comments

@TheNoeTrevino
Copy link

TheNoeTrevino commented Aug 27, 2024

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

@TheNoeTrevino TheNoeTrevino added the bug Issues related to bugs. Please attach a severity, a priority and category with this label. label Aug 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Issues related to bugs. Please attach a severity, a priority and category with this label.
Projects
None yet
Development

No branches or pull requests

1 participant