I updated the https://github.com/demanuel/cuda_lint_raku however i'm unable to create a PR as your repo is a fork of mine
Search found 8 matches
- 04.08.2021 21:13
- Forum: Lexers
- Topic: Raku Lexer
- Replies: 10
- Views: 24041
- 02.06.2021 12:46
- Forum: Plugins
- Topic: plugin git_status makes switching tab very slow
- Replies: 7
- Views: 3645
- 02.06.2021 08:03
- Forum: Lexers
- Topic: Raku Lexer
- Replies: 10
- Views: 24041
- 01.06.2021 09:22
- Forum: Lexers
- Topic: Raku Lexer
- Replies: 10
- Views: 24041
3. Can i consider all these words as keywords IF the next 'token' is identifier? 'sub Id' = here 'sub' is keyword? 'rule sub { ... }' = here 'sub' is not keyword? The example is correct. sub is not always a keyword. This is valid code with the sub as the name of the rule: https://docs.raku.org/lang...
- 01.06.2021 07:42
- Forum: Plugins
- Topic: plugin git_status makes switching tab very slow
- Replies: 7
- Views: 3645
- 31.05.2021 22:58
- Forum: Plugins
- Topic: plugin git_status makes switching tab very slow
- Replies: 7
- Views: 3645
plugin git_status makes switching tab very slow
plugin git_status makes switching tab very slow when the git repo is big (lots of files).
Don't know if i should report it here, but i didn't found the github repo for that that plugin and i didn't find any entry in this forum. Please move it if this is not the right place for this report.
Regards
Don't know if i should report it here, but i didn't found the github repo for that that plugin and i didn't find any entry in this forum. Please move it if this is not the right place for this report.
Regards
- 31.05.2021 22:45
- Forum: Lexers
- Topic: Raku Lexer
- Replies: 10
- Views: 24041
New version attached. The only issue i see is with the code grammar Calculator { token TOP { [ <add> | <sub> ] } rule add { <num> '+' <num> } rule sub { <num> '-' <num> } token num { \d+ } } in the code tree for the sub rule it becomes gramar Calculator token TOP rule add sub { token num How do i ma...
- 31.05.2021 20:43
- Forum: Lexers
- Topic: Raku Lexer
- Replies: 10
- Views: 24041
Raku Lexer
Hi! I added some keywords to the raku lexer. Don't know if they are in the right place, though.... I also changed the displaying types in the code browser, because it's possible to put comments in the signature and it will make the display unusable. The lcf file is attached. Another thing that i did...