消息在vim的底部User defined completion ^U^P^N.
这个信息对我没用.
是否可以隐藏消息?
我试着用
imap silent ^Y ^X^U
Run Code Online (Sandbox Code Playgroud)
在vimrc上设置
但是popmen和消息都没有显示出来.
注意:我在github上发现了这个问题.如果您对这个问题很感兴趣,也可以阅读该问题.

作为形象。所有命令都是相似的。我知道如何使用它,但是我真的不知道细节。有人知道吗?非常感谢你。
# does `cat` read fd and print?
$ cat file
# does `cat` read from stdin and print?
$ cat < file
$ cat - < file
# with heredoc or herestring, what methods `cat` command use to read from heredoc?stdin?
$ cat << EOF
heredoc> test
heredoc> EOF
test
$ cat <<< "test"
$ cat - << EOF
heredoc> test
heredoc> EOF
test
$ cat - <<< "test"
# and I dont why these commands works?
$ cat …Run Code Online (Sandbox Code Playgroud)