We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b115ac commit 2934370Copy full SHA for 2934370
lua/nvim-tree/legacy.lua
@@ -2,7 +2,7 @@ local utils = require "nvim-tree.utils"
2
3
local M = {}
4
5
--- TODO update git.io/JPhyt when adding a migration
+-- TODO update bit.ly/3vIpEOJ when adding a migration
6
7
-- migrate the g: to o if the user has not specified that when calling setup
8
local g_migrations = {
@@ -205,7 +205,7 @@ function M.migrate_legacy_options(opts)
205
for g, m in pairs(g_migrations) do
206
if vim.fn.exists("g:" .. g) ~= 0 then
207
m(opts)
208
- msg = (msg and msg .. ", " or "Following options were moved to setup, see git.io/JPhyt: ") .. g
+ msg = (msg and msg .. ", " or "Following options were moved to setup, see bit.ly/3vIpEOJ: ") .. g
209
end
210
211
if msg then
0 commit comments