-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathshowTips.sh
executable file
·32 lines (29 loc) · 1.16 KB
/
showTips.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
#Attribute codes:
#00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
#Text color codes:
#30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
#Background color codes:
#40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
echo -e "\e[1;31mF2 Enable PHPFolding.\e[0m"
echo -e "\e[1;32mF2 Disable PHPFolding.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;33mF4 write file\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;34mF5 Check php syntax.\e[0m"
echo -e "\e[1;35mCtrl + F5 Check js syntax.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;31mF6 Execute PHP file\e[0m"
echo -e "\e[1;32mF7 PHPCodeSniffer current file.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;33mF8 Previous Tab.\e[0m"
echo -e "\e[1;34mF9 Next Tab.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;35mF12 Enable/Disable cursorColumn.\e[0m"
echo -e "\e[1;31mCtrl + F12 Enable/Disable cursorLine.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;32mCtrl + h Show My Help !.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;33mUse \\g to show colorful indent guide !.\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;33mUse retab in vim to change all tab (\\t) to spaces!.\e[0m"