-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Open
Labels
docsThis change adds or pertains to documentationThis change adds or pertains to documentationgood first issueIndicates a good issue for first-time contributors to JuliaIndicates a good issue for first-time contributors to Juliahelp wantedIndicates that a maintainer wants help on an issue or pull requestIndicates that a maintainer wants help on an issue or pull request
Description
Help currently had a list of keywords that are handled specially:
julia/stdlib/REPL/src/docview.jl
Lines 524 to 529 in f806717
| const builtins = ["abstract type", "baremodule", "begin", "break", | |
| "catch", "ccall", "const", "continue", "do", "else", | |
| "elseif", "end", "export", "finally", "for", "function", | |
| "global", "if", "import", "let", | |
| "local", "macro", "module", "mutable struct", "primitive type", | |
| "quote", "return", "struct", "try", "using", "while"] |
(from #12438).
It would be good to handle characters which have special meaning:
-
$for interpolation -
@for macro invocation -
''for character literals -
"for string literals -
[for array expressions and comprehensions -
(for tuples -
.for broadcasting - ``` for commands
-
;other uses (as mentioned in punctuation.md)
mbauman, charleskawczynski, nickrobinson251 and gaybro8777
Metadata
Metadata
Assignees
Labels
docsThis change adds or pertains to documentationThis change adds or pertains to documentationgood first issueIndicates a good issue for first-time contributors to JuliaIndicates a good issue for first-time contributors to Juliahelp wantedIndicates that a maintainer wants help on an issue or pull requestIndicates that a maintainer wants help on an issue or pull request