当寻呼机是 neovim 时,Linux mint 手册页需要 sudo

当寻呼机是 neovim 时,Linux mint 手册页需要 sudo

如果我sudo man工作正常,否则我会得到

~$ man ls
fuse: mount failed: Permission denied

Cannot mount AppImage, please check your FUSE setup.
You might still be able to extract the contents of this AppImage 
if you run it with the --appimage-extract option. 
See https://github.com/AppImage/AppImageKit/wiki/FUSE 
for more information
open dir error: No such file or directory

MANPAGER作为参考,根据 neovim 帮助设置

export MANPAGER='nvim +Man!'

:Man命令在 nvim 内部工作正常。

答案1

我不太明白为什么 MANPAGER 会发生这种情况,但按照错误消息中的建议,我相信这是可行的:

export MANPAGER='nvim --appimage-extract-and-run -c "set ft=man"'

更新

之前的解决方案在 neovim >= v0.6.1 中不再起作用。以下是受到推崇的方法:

export MANPAGER='nvim +Man!'

相关内容