GithubHelp home page GithubHelp logo

Conflict with nvim-tree about lir.nvim HOT 3 CLOSED

tamago324 avatar tamago324 commented on August 12, 2024 1
Conflict with nvim-tree

from lir.nvim.

Comments (3)

tamago324 avatar tamago324 commented on August 12, 2024

Thanks for the report.
Can you give me a minimal vimrc and steps to reproduce?

from lir.nvim.

LoydAndrew avatar LoydAndrew commented on August 12, 2024

Hello, I experience the same problem. I just have this settings for nvim_tree:

nvim_tree.setup({
    tree_follow = true,
    auto_close = true,
    update_cwd = true,
    tree_respect_buf_cwd = true,
    filters = {
        custom = {
            ".git",
            "node_modules",
            ".cache",
            "__pycache__",
            ".vscode",
            ".mypy_cache",
            ".idea",
        },
    },
    diagnostics = {
        enable = true,
        icons = {
            hint = "",
            info = "",
            warning = "",
            error = "",
        },
    },
    view = {
        width = 50,
        height = 50,
        side = "left",
        auto_resize = true,
    },
    follow_update_path = true,
    update_focused_file = {
        enable = false,
        update_cwd = true,
        ignore_list = {},
    },
})

-- for lir

local actions = require("lir.actions")
local mark_actions = require("lir.mark.actions")
local clipboard_actions = require("lir.clipboard.actions")

require("lir").setup({
    show_hidden_files = true,
    devicons_enable = true,
    mappings = {
        ["o"] = actions.edit,
        ["<Cr>"] = actions.edit,
        ["<C-s>"] = actions.split,
        ["<C-v>"] = actions.vsplit,
        ["<C-t>"] = actions.tabedit,

        ["u"] = actions.up,
        ["q"] = actions.quit,
        ["<Esc>"] = actions.quit,

        ["K"] = actions.mkdir,
        ["n"] = actions.newfile,
        ["r"] = actions.rename,
        ["@"] = actions.cd,
        ["Y"] = actions.yank_path,
        ["."] = actions.toggle_show_hidden,
        ["d"] = actions.delete,

        ["J"] = function()
            mark_actions.toggle_mark()
            vim.cmd("normal! j")
        end,
        ["c"] = clipboard_actions.copy,
        ["x"] = clipboard_actions.cut,
        ["p"] = clipboard_actions.paste,
    },
    float = {
        winblend = 0,
        curdir_window = {
            enable = true,
            highlight_dirname = true,
        },

        -- -- You can define a function that returns a table to be passed as the third
        -- -- argument of nvim_open_win().
        -- win_opts = function()
        --   local width = math.floor(vim.o.columns * 0.8)
        --   local height = math.floor(vim.o.lines * 0.8)
        --   return {
        --     border = require("lir.float.helper").make_border_opts({
        --       "+", "─", "+", "│", "+", "─", "+", "│",
        --     }, "Normal"),
        --     width = width,
        --     height = height,
        --     row = 1,
        --     col = math.floor((vim.o.columns - width) / 2),
        --   }
        -- end,
    },
    hide_cursor = false,
    on_init = function()
        -- use visual mode
        vim.api.nvim_buf_set_keymap(
            0,
            "x",
            "J",
            ':<C-u>lua require"lir.mark.actions".toggle_mark("v")<CR>',
            { noremap = true, silent = true }
        )

        -- echo cwd
        vim.api.nvim_echo({ { vim.fn.expand("%:p"), "Normal" } }, false, {})
    end,
})

require("lir.git_status").setup({
    show_ignored = false,
})

If I commented out nvim-tree from packer file lir becomes to work.

from lir.nvim.

tamago324 avatar tamago324 commented on August 12, 2024

@Chaitanyabsprip @LoydAndrew

Set update_to_buf_dir.enable to false.

nvim_tree.setup({
    update_to_buf_dir = {
      enable = false
    },
   ...
}

see https://github.com/kyazdani42/nvim-tree.lua/blob/3f4ed9b6c2598ab8304186486a05ae7a328b8d49/doc/nvim-tree-lua.txt#L189-L193

from lir.nvim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.