【发布时间】:2018-08-13 13:33:14
【问题描述】:
当我在 Sublime Text3 中构建 C++ 编程时,我在任何控制台输出的开头都会看到以下几行:
这是我~/.bash_profile的内容:
# Setting PATH for Python 2.7
# The original version is saved in .bash_profile.pysave
PATH="/System/Library/Frameworks/Python.framework/Versions/2.7/bin:${PATH}"
export PATH
# added by Anaconda3 5.0.1 installer
export PATH="/Users/zhuliwen/anaconda3/bin:$PATH"
export CLICOLOR=1
export LSCOLORS=gxfxaxdxcxegedabagacad
# export PS1="\[\033[38;5;10m\]\u@\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tp ut sgr0)\]\[\033[38;5;220m\]\w\[$(tput sgr0)\]"
# export PS1="\[\033[38;5;10m\]\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sgr0)\]\[\033[38;5;220m\]\w\[$(tput sgr0)\]"
export PS1="\[\033[38;5;10m\]\h\[$(tput sgr0)\]\[\033[38;5;15m\]:\[$(tput sg r0)\]\[\033[38;5;220m\]\w\[$(tput sgr0)\]\[\033[38;5;15m\]\\$ \[$(tput sgr0) \]"
alias ls='ls -G'
alias grep='grep --color'
我该如何解决这个问题?谢谢
【问题讨论】:
-
你能把你用来执行构建的
sublime-build包括进来吗?
标签: bash macos terminal sublimetext3