From 7490ef2fe998114f2dd8206dcf61b52686f4a110 Mon Sep 17 00:00:00 2001 From: yukkop Date: Tue, 17 Feb 2026 08:55:41 +0000 Subject: [PATCH] fix: nvim-pager close all pages on q --- package/nvim-pager.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/nvim-pager.nix b/package/nvim-pager.nix index b06b26a..3233784 100644 --- a/package/nvim-pager.nix +++ b/package/nvim-pager.nix @@ -1,7 +1,7 @@ {pkgs, ...}: pkgs.writeShellScriptBin "pager" '' nvim -R -u NONE \ - -c 'nnoremap q :q!' \ + -c 'nnoremap q :qa!' \ -c 'set buftype=nofile nowrap' \ -c 'set runtimepath^=${pkgs.vimPlugins.vim-plugin-AnsiEsc}' \ -c 'runtime! plugin/*.vim' \