File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ COLOR_LIGHT_CYAN=$(tput sgr0 && tput bold && tput setaf 6)
1414COLOR_RESET=$( tput sgr0)
1515
1616# shellcheck disable=SC1091
17- source ~ /.iterm2_shell_integration.bash
17+ ITERM_SHELL_INTEGRATION=" ${HOME} .iterm2_shell_integration.bash"
18+ if [ -f " $ITERM_SHELL_INTEGRATION " ]; then
19+ source " $ITERM_SHELL_INTEGRATION "
20+ fi
1821
1922pathadd () {
2023 newelement=${1%/ }
Original file line number Diff line number Diff line change 1414 " }"
1515 ],
1616 "description" : " For Loop"
17- }
17+ },
18+ "Console Log String" : {
19+ "prefix" : " c," ,
20+ "body" : [
21+ " console.log('$1', ${1});" ,
22+ ],
23+ "description" : " Console log string"
24+ },
25+ "React Constructor" : {
26+ "prefix" : " rc" ,
27+ "body" : [
28+ " constructor(props, context) {" ,
29+ " super(props, context);" ,
30+ " $0" ,
31+ " }" ,
32+ ],
33+ "description" : " Console Log"
34+ },
35+
1836}
You can’t perform that action at this time.
0 commit comments