diff --git a/BREAKING_CHANGES.md b/BREAKING_CHANGES.md index 2fcb48d..6946463 100644 --- a/BREAKING_CHANGES.md +++ b/BREAKING_CHANGES.md @@ -1,8 +1,6 @@ -This file contains breaking changes that have been made in this branch to -make it easier to switch from [hoob3rt/lualine.nvim](https://github.com/hoob3rt/lualine.nvim) -This file contains changes in chronological order. It's possible breaking change -has been made several times to the same thing. In that case the one nearest the -bottom indicates current state. +This file contains breaking changes in chronological order. It's possible +breaking change has been made several times to the same thing. In that case +the one nearest the bottom indicates current state. ### Color option unification color_added, color_modified, color_removed options in diff & color_error, diff --git a/README.md b/README.md index ff575da..a666865 100644 --- a/README.md +++ b/README.md @@ -11,14 +11,6 @@ A blazing fast and easy to configure Neovim statusline written in Lua `lualine.nvim` requires neovim 0.5 - - -This is a fork of [hoob3rt/lualine.nvim](https://github.com/hoob3rt/lualine.nvim). -If you're switching from there please checkout [BREAKING_CHANGES.md](./BREAKING_CHANGES.md) -to see what you may have to change in your config. - - - ## Contributing Feel free to create an issue/pr if you want to see anything else implemented. diff --git a/lua/lualine/components/branch/git_branch.lua b/lua/lualine/components/branch/git_branch.lua index ef4a4cd..a125883 100644 --- a/lua/lualine/components/branch/git_branch.lua +++ b/lua/lualine/components/branch/git_branch.lua @@ -115,7 +115,7 @@ function M.init() end function M.get_branch(bufnr) if vim.g.actual_curbuf ~= nil and active_bufnr ~= vim.g.actual_curbuf then - -- Workaround for https://github.com/hoob3rt/lualine.nvim/issues/286 + -- Workaround for https://github.com/nvim-lualine/lualine.nvim/issues/286 -- See upstream issue https://github.com/neovim/neovim/issues/15300 -- Diff is out of sync re sync it. M.find_git_dir() diff --git a/lua/lualine/components/diff/git_diff.lua b/lua/lualine/components/diff/git_diff.lua index c36b254..997629d 100644 --- a/lua/lualine/components/diff/git_diff.lua +++ b/lua/lualine/components/diff/git_diff.lua @@ -46,7 +46,7 @@ function M.get_sign_count(bufnr) git_diff = M.src() diff_cache[vim.fn.bufnr()] = git_diff elseif vim.g.actual_curbuf ~= nil and active_bufnr ~= vim.g.actual_curbuf then - -- Workaround for https://github.com/hoob3rt/lualine.nvim/issues/286 + -- Workaround for https://github.com/nvim-lualine/lualine.nvim/issues/286 -- See upstream issue https://github.com/neovim/neovim/issues/15300 -- Diff is out of sync re sync it. M.update_diff_args()