We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dfb5f4 commit 5ca259fCopy full SHA for 5ca259f
Turtle.types.ps1xml
@@ -2475,7 +2475,12 @@ return $this
2475
)
2476
2477
$id = $luckyArgs -join '-'
2478
-$this | turtle id $id title $($luckyArgs -join ' ') @luckyArgs
+$title = $luckyArgs -join ' '
2479
+if ($this.id -notmatch 'turtle-?\d+') {
2480
+ $id = $this.id, $id -join '-'
2481
+ $title = $this.title, $title -join ' '
2482
+}
2483
+$this | turtle id $id title $title @luckyArgs
2484
2485
</Script>
2486
</ScriptMethod>
0 commit comments