We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae483a0 commit b0d1d77Copy full SHA for b0d1d77
1 file changed
PSEverything/ArgumentCompleter.cs
@@ -44,7 +44,8 @@ private IEnumerable<CompletionResult> CompleteSearchEverything(string parameterN
44
"huge",
45
"gigantic"
46
});
47
- private string[] SizeConstantToolTips => _sizeConstants ?? (_sizeConstants = new string[]{
+ private string[] _sizeConstantsToolTips;
48
+ private string[] SizeConstantToolTips => _sizeConstantsToolTips ?? (_sizeConstantsToolTips = new string[]{
49
"empty",
50
"0 KB < size <= 10 KB",
51
"10 KB < size <= 100 KB",
0 commit comments