📄 idelrun
字号:
#!/bin/sh# We use a temp file instead of a pipe so that the program run by# idelvm can read stdin. If you want to pass any arguments to idelvm,# you'll need to call it explicitly.# (TODO: parse out idelvm arguments)tmpfile=/tmp/idel-$$trap 'rm -f $tmpfile; exit 1' 1 2 15 # to clean up the file aftercppidelasm "$@" >$tmpfile && idelvm $tmpfilestatus=$?rm -f $tmpfileexit $status
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -