- Open preferences pane (
Cmd+,
) - Go to
Languages & Frameworks
>PHP
. - On
CLI Interpreter
, click the...
button. - Click
+
andFrom Docker, Vagrant, VM, Remote...
. - Select
Docker
, one of the images being used for the project. ThenOK
. - Click
OK
again and the CLI Interpreter setting will be complete.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yarn eslint --config .eslintrc.js . | grep ' error \| warn ' | rev | cut -f 1 -w | rev | sort | uniq -c | |
# output format: | |
# error Command failed with exit code 1. | |
# 229 arrow-body-style | |
# 23 consistent-return | |
# 869 import/extensions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Alpha Component</key> | |
<real>1</real> | |
<key>Blue Component</key> | |
<real>0.17263323068618774</real> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local ret_status="%(?:%{$fg_bold[green]%}➜ :%{$fg_bold[red]%}➜ )" | |
local ret_status="" | |
PROMPT='%F{blue} %n %F{green} %m %F{yellow} %~ %f$(git_prompt_info) | |
%F{red}> %{$reset_color%}' | |
ZSH_THEME_GIT_PROMPT_PREFIX="%F{blue} " | |
ZSH_THEME_GIT_PROMPT_SUFFIX="%{$reset_color%}" | |
ZSH_THEME_GIT_PROMPT_DIRTY=" %F{red} " | |
ZSH_THEME_GIT_PROMPT_CLEAN="" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
TEXFILE=$1 | |
if [ ! -f $1.tex ]; then | |
echo "$1.tex doesn't exist"; | |
exit 0; | |
fi | |