We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NVIM v0.10.3
EndeavourOS
Some screen elements flicker when the response is received
No flickering
echo 'GET https://httpbin.org/uuid' > test.http nvim -u repro.lua test.http
:Rest run
#506 would help solve this issue
lazy.nvim
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim' if not vim.loop.fs_stat(lazypath) then vim.fn.system({ 'git', 'clone', '--filter=blob:none', 'https://github.com/folke/lazy.nvim.git', '--branch=stable', lazypath, }) end vim.opt.rtp:prepend(lazypath) vim.keymap.set('n', '<c-q>', '<cmd>qa!<cr>') vim.g.mapleader = ' ' vim.api.nvim_create_autocmd('FileType', { pattern = 'json', callback = function() vim.bo.formatexpr = '' vim.bo.formatprg = 'jq' end, group = vim.api.nvim_create_augroup('Group', {}), }) require('lazy').setup({ 'rest-nvim/rest.nvim', { 'nvim-treesitter/nvim-treesitter', build = ':TSUpdate', main = 'nvim-treesitter.configs', opts = { ensure_installed = { 'http' }, sync_install = false, highlight = { enable = true }, indent = { enable = true }, }, }, { 'folke/noice.nvim', dependencies = 'MunifTanjim/nui.nvim', opts = {}, }, })
The text was updated successfully, but these errors were encountered:
RestResponsePost
No branches or pull requests
Prerequisites
Neovim Version
NVIM v0.10.3
Operating system/version
EndeavourOS
Actual behavior
Some screen elements flicker when the response is received
Expected behavior
No flickering
Steps to reproduce
:Rest run
Other information
#506 would help solve this issue
Repro (
lazy.nvim
)The text was updated successfully, but these errors were encountered: