forked from telosys-tools-bricks/telosys-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telosys-cli.cfg
36 lines (25 loc) · 1.2 KB
/
telosys-cli.cfg
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
33
34
35
# Telosys-CLI configuration file
# Specific editor command
# Use 'EditorCommand' to set the specific OS command to be used to launch the editor
# NB : the command must be usabe from the command line
# use full path or add it in the 'PATH'
# Example with 'Sublime Text'
# EditorCommand = subl $FILE
# Example with 'Visual Source Code'
# EditorCommand = code $FILE
# Example for 'Sublime Text with full path / Windows'
# EditorCommand = "D:/Tools/SublimeText/subl.exe" $FILE
# Example for 'NotePad++ with full path / Windows'
# EditorCommand = "C:/Program Files (x86)/Notepad++/notepad++.exe" $FILE
# Example for 'TextEdit / Mac OS' (file must exist, cannot create a new one)
# EditorCommand = open -t $FILE
# Example for 'Default editor / Mac OS' (file must exist, cannot create a new one)
# EditorCommand = open -e $FILE
# Linux Mint : "gnome-terminal" and "xed"
# EditorCommand = /usr/bin/xed $FILE
# EditorCommand = /usr/bin/gnome-terminal -e "vi $FILE"
# EditorCommand = /usr/bin/gnome-terminal -e "nano $FILE"
# Lubuntu : "lxterminal" and "leafpad"
# EditorCommand = /usr/bin/lxterminal -e "vi $FILE"
# EditorCommand = /usr/bin/lxterminal -e "nano $FILE"
# EditorCommand = /usr/bin/leafpad $FILE &