-
Notifications
You must be signed in to change notification settings - Fork 0
Migration Guide
Kyeong-mi Kim edited this page Jun 11, 2025
·
5 revisions
Historically, SqlFlick is new name. The previous name was 'SqlSnap'. I liked that name(word 'snap' is originated from snap the finger, which indicate just signal that command, query run), but
- Some other project already there with same name
- The word snap is confusing, because of it's domain (db, that reminds 'snapshot')
So the project name, module name was changed with other names, which has meaning 'a sudden sharp movement', that follow the line of quick movement (light-weight), of our project.
Because of this change, it would break of your experience after update, not matched module name / configuration.
Follow this steps. If it is not sufficient, plz let me know! 🙏
- OLD ONE
{
"nolleh/sqlsnap.nvim",
config = function()
require("sqlsnap").setup({
})
end,
-- recommended load plugin option
cmd = { "SQLSnapSelectDB", "SQLSnapExecute", "SQLSnapExecuteBuf", "SQLSnapInstall", "SQLSnapRestart" },
ft = { "sql" },
}- NEW ONE
{
"nolleh/sqlflick.nvim",
config = function()
require("sqlflick").setup({
-- Configuration options (see below)
})
end,
-- recommended load plugin option
cmd = { "SQLFlickSelectDB", "SQLFlickExecute", "SQLFlickExecuteBuf", "SQLFlickInstall", "SQLFlickRestart" },
ft = { "sql" },
}