mirror of
https://github.com/neovim/neovim.git
synced 2025-12-11 17:12:40 +00:00
Problem: When running ":edit <url>", filetype detection is not triggered. Solution: Run the autocmds in the filetypedetect group after loading the content. Problem: After fetching remote content from a URL and adding it to the buffer, the buffer is marked as modified. This is inconsistent with the original netrw behavior, and it causes problems with `:e` to refresh or `:q` as it prompts for saving the file even if the user hasn't touched the content at all. Solution: Mark the buffer as unmodified right after adding the remote content to the buffer.
46 lines
1.4 KiB
Lua
46 lines
1.4 KiB
Lua
vim.g.loaded_remote_file_loader = true
|
|
|
|
--- Callback for BufReadCmd on remote URLs.
|
|
--- @param args { buf: integer }
|
|
local function on_remote_read(args)
|
|
if vim.fn.executable('curl') ~= 1 then
|
|
vim.api.nvim_echo({
|
|
{ 'Warning: `curl` not found; remote URL loading disabled.', 'WarningMsg' },
|
|
}, true, {})
|
|
return true
|
|
end
|
|
|
|
local bufnr = args.buf
|
|
local url = vim.api.nvim_buf_get_name(bufnr)
|
|
local view = vim.fn.winsaveview()
|
|
|
|
vim.api.nvim_echo({ { 'Fetching ' .. url .. ' …', 'MoreMsg' } }, true, {})
|
|
|
|
vim.net.request(
|
|
url,
|
|
{ retry = 3 },
|
|
vim.schedule_wrap(function(err, content)
|
|
if err then
|
|
vim.notify('Failed to fetch ' .. url .. ': ' .. tostring(err), vim.log.levels.ERROR)
|
|
vim.fn.winrestview(view)
|
|
return
|
|
end
|
|
|
|
local lines = vim.split(content.body, '\n', { plain = true })
|
|
vim.api.nvim_buf_set_lines(bufnr, 0, -1, true, lines)
|
|
vim.api.nvim_exec_autocmds('BufRead', { group = 'filetypedetect', buffer = bufnr })
|
|
vim.bo[bufnr].modified = false
|
|
|
|
vim.fn.winrestview(view)
|
|
vim.api.nvim_echo({ { 'Loaded ' .. url, 'Normal' } }, true, {})
|
|
end)
|
|
)
|
|
end
|
|
|
|
vim.api.nvim_create_autocmd('BufReadCmd', {
|
|
group = vim.api.nvim_create_augroup('nvim.net.remotefile', {}),
|
|
pattern = { 'http://*', 'https://*' },
|
|
desc = 'Edit remote files (:edit https://example.com)',
|
|
callback = on_remote_read,
|
|
})
|