호출기가 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!'

관련 정보