remove emoji from function names (#5633)
Some editors seem to have issues with those. The ones in strings seem to be alright, though. Rename the affected symbols.
This commit is contained in:
parent
e2e4912645
commit
beb915e308
|
@ -37,13 +37,13 @@ type
|
||||||
# Created by http://beatscribe.com/ (beatscribe#1008 on Discord)
|
# Created by http://beatscribe.com/ (beatscribe#1008 on Discord)
|
||||||
# These need to be the main body of the log not to be reformatted or escaped.
|
# These need to be the main body of the log not to be reformatted or escaped.
|
||||||
|
|
||||||
proc mono🐼*() = notice "\n" & staticRead("bellatrix" / "mono.txt")
|
proc bellatrixMono*() = notice "\n" & staticRead("bellatrix" / "mono.txt")
|
||||||
proc color🐼*() = notice "\n" & staticRead("bellatrix" / "color.ans")
|
proc bellatrixColor*() = notice "\n" & staticRead("bellatrix" / "color.ans")
|
||||||
proc blink🐼*() = notice "\n" & staticRead("bellatrix" / "blink.ans")
|
proc bellatrixBlink*() = notice "\n" & staticRead("bellatrix" / "blink.ans")
|
||||||
|
|
||||||
proc mono🦉*() = notice "\n" & staticRead("capella" / "mono.txt")
|
proc capellaMono*() = notice "\n" & staticRead("capella" / "mono.txt")
|
||||||
proc color🦉*() = notice "\n" & staticRead("capella" / "color.ans")
|
proc capellaColor*() = notice "\n" & staticRead("capella" / "color.ans")
|
||||||
proc blink🦉*() = notice "\n" & staticRead("capella" / "blink.ans")
|
proc capellaBlink*() = notice "\n" & staticRead("capella" / "blink.ans")
|
||||||
|
|
||||||
proc mono🐟*() = notice "\n" & staticRead("deneb" / "mono.txt")
|
proc denebMono*() = notice "\n" & staticRead("deneb" / "mono.txt")
|
||||||
proc color🐟*() = notice "\n" & staticRead("deneb" / "color.ans")
|
proc denebColor*() = notice "\n" & staticRead("deneb" / "color.ans")
|
||||||
|
|
|
@ -170,18 +170,18 @@ func getVanityLogs(stdoutKind: StdoutLogKind): VanityLogs =
|
||||||
of StdoutLogKind.Auto: raiseAssert "inadmissable here"
|
of StdoutLogKind.Auto: raiseAssert "inadmissable here"
|
||||||
of StdoutLogKind.Colors:
|
of StdoutLogKind.Colors:
|
||||||
VanityLogs(
|
VanityLogs(
|
||||||
onMergeTransitionBlock: color🐼,
|
onMergeTransitionBlock: bellatrixColor,
|
||||||
onFinalizedMergeTransitionBlock: blink🐼,
|
onFinalizedMergeTransitionBlock: bellatrixBlink,
|
||||||
onUpgradeToCapella: color🦉,
|
onUpgradeToCapella: capellaColor,
|
||||||
onKnownBlsToExecutionChange: blink🦉,
|
onKnownBlsToExecutionChange: capellaBlink,
|
||||||
onUpgradeToDeneb: color🐟)
|
onUpgradeToDeneb: denebColor)
|
||||||
of StdoutLogKind.NoColors:
|
of StdoutLogKind.NoColors:
|
||||||
VanityLogs(
|
VanityLogs(
|
||||||
onMergeTransitionBlock: mono🐼,
|
onMergeTransitionBlock: bellatrixMono,
|
||||||
onFinalizedMergeTransitionBlock: mono🐼,
|
onFinalizedMergeTransitionBlock: bellatrixMono,
|
||||||
onUpgradeToCapella: mono🦉,
|
onUpgradeToCapella: capellaMono,
|
||||||
onKnownBlsToExecutionChange: mono🦉,
|
onKnownBlsToExecutionChange: capellaMono,
|
||||||
onUpgradeToDeneb: mono🐟)
|
onUpgradeToDeneb: denebMono)
|
||||||
of StdoutLogKind.Json, StdoutLogKind.None:
|
of StdoutLogKind.Json, StdoutLogKind.None:
|
||||||
VanityLogs(
|
VanityLogs(
|
||||||
onMergeTransitionBlock:
|
onMergeTransitionBlock:
|
||||||
|
|
Loading…
Reference in New Issue