Skip to content

Commit 225a28e

Browse files
committed
Making function names match documentation
Releasing 3.0.0 - this is a breaking change if other programs used ansi::setTitle or ansi::setIcond. Closes #23
1 parent 3df8dc2 commit 225a28e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

ansi

+6-6
Original file line numberDiff line numberDiff line change
@@ -665,11 +665,11 @@ ansi::scrollUp() {
665665
printf '%s%sS' "$ANSI_CSI" "${1-}"
666666
}
667667

668-
ansi::setIcon() {
668+
ansi::icon() {
669669
printf '%s1;%s%s' "$ANSI_OSC" "${1-}" "$ANSI_ST"
670670
}
671671

672-
ansi::setTitle() {
672+
ansi::title() {
673673
printf '%s2;%s%s' "$ANSI_OSC" "${1-}" "$ANSI_ST"
674674
}
675675

@@ -1552,19 +1552,19 @@ ansi() {
15521552
;;
15531553

15541554
--icon)
1555-
$supported && ansi::setIcon ""
1555+
$supported && ansi::icon ""
15561556
;;
15571557

15581558
--icon=*)
1559-
$supported && ansi::setIcon "${1#*=}"
1559+
$supported && ansi::icon "${1#*=}"
15601560
;;
15611561

15621562
--title)
1563-
$supported && ansi::setTitle ""
1563+
$supported && ansi::title ""
15641564
;;
15651565

15661566
--title=*)
1567-
$supported && ansi::setTitle "${1#*=}"
1567+
$supported && ansi::title "${1#*=}"
15681568
;;
15691569

15701570
--no-restore)

0 commit comments

Comments
 (0)