We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a8222ac + 0a0a1a1 commit db22ddfCopy full SHA for db22ddf
src/requests/completions.jl
@@ -136,6 +136,7 @@ const snippet_completions = Dict{String,String}(
136
"elseif" => "elseif ",
137
"end" => "end",
138
"export" => "export ",
139
+ "false" => "false",
140
"finally" => "finally",
141
"for" => "for \$1 in \$2\n\t\$0\nend",
142
"function" => "function \$1(\$2)\n\t\$0\nend",
@@ -152,6 +153,7 @@ const snippet_completions = Dict{String,String}(
152
153
"quote" => "quote\n\t\$0\nend",
154
"return" => "return",
155
"struct" => "struct \$0 end",
156
+ "true" => "true",
157
"try" => "try\n\t\$0\ncatch\nend",
158
"using" => "using ",
159
"while" => "while \$1\n\t\$0\nend"
0 commit comments