小编Sha*_*ang的帖子

在vim隐藏"用户定义的完成"消息

消息在vim的底部User defined completion ^U^P^N.

这个信息对我没用.

是否可以隐藏消息?

我试着用

imap silent ^Y ^X^U
Run Code Online (Sandbox Code Playgroud)

在vimrc上设置

但是popmen和消息都没有显示出来.

注意:我在github上发现了这个问题.如果您对这个问题很感兴趣,也可以阅读该问题.

点击我

vim

2
推荐指数
1
解决办法
1649
查看次数

对Shell中的一些标准输入或Heredoc用法感到困惑

在此处输入图片说明

作为形象。所有命令都是相似的。我知道如何使用它,但是我真的不知道细节。有人知道吗?非常感谢你。

# 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)

linux bash shell

2
推荐指数
1
解决办法
630
查看次数

标签 统计

bash ×1

linux ×1

shell ×1

vim ×1