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
v0.10.0
I don't use one
No response
:copen
:lua require('smart-splits').start_resize_mode()
<C-w>k
:cclose
<esc>
The mapping set in init.lua is restored for the main editor window -> highlighting of searched text is cleared.
The mapping is not restored for this window. If you move back to the quickfix window, it works there, so it was restored for that window.
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" if not (vim.uv or vim.loop).fs_stat(lazypath) then vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) local plugins = { 'folke/tokyonight.nvim', 'mrjones2014/smart-splits.nvim', } require("lazy").setup(plugins, {}) vim.keymap.set('n', '<Esc>', ':noh<cr>', { noremap = true }) vim.opt.termguicolors = true vim.cmd([[colorscheme tokyonight]])
The text was updated successfully, but these errors were encountered:
mrjones2014
No branches or pull requests
Similar Issues
Neovim Version
v0.10.0
Multiplexer Integration
I don't use one
Multiplexer Version
No response
Steps to Reproduce
:copen
:lua require('smart-splits').start_resize_mode()
<C-w>k
-- or close the quickfix window::cclose
<esc>
Expected Behavior
The mapping set in init.lua is restored for the main editor window -> highlighting of searched text is cleared.
Actual Behavior
The mapping is not restored for this window.
If you move back to the quickfix window, it works there, so it was restored for that window.
Minimal Configuration to Reproduce
Additional Details and/or Screenshots
No response
The text was updated successfully, but these errors were encountered: