Skip to content

Commit db22ddf

Browse files
authored
Merge pull request #1002 from BenPH/add-true-false-to-kw-completions
Add true and false to keyword completions
2 parents a8222ac + 0a0a1a1 commit db22ddf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/requests/completions.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,7 @@ const snippet_completions = Dict{String,String}(
136136
"elseif" => "elseif ",
137137
"end" => "end",
138138
"export" => "export ",
139+
"false" => "false",
139140
"finally" => "finally",
140141
"for" => "for \$1 in \$2\n\t\$0\nend",
141142
"function" => "function \$1(\$2)\n\t\$0\nend",
@@ -152,6 +153,7 @@ const snippet_completions = Dict{String,String}(
152153
"quote" => "quote\n\t\$0\nend",
153154
"return" => "return",
154155
"struct" => "struct \$0 end",
156+
"true" => "true",
155157
"try" => "try\n\t\$0\ncatch\nend",
156158
"using" => "using ",
157159
"while" => "while \$1\n\t\$0\nend"

0 commit comments

Comments
 (0)