We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This affects references/occurrences finding and variable renaming. An example from Kirk:
function Write-Item($itemCount) { $i = 1 while ($i -le $itemCount) { $str = "Output ${i}" Write-Output $str $i = $i + 1 } }
If you attempt to rename the variable $i, the instance inside of the output string does not get renamed.
This affects references/occurrences finding and variable renaming. An example from Kirk:
If you attempt to rename the variable $i, the instance inside of the output string does not get renamed.