Search found 8 matches

by demanuel
04.08.2021 21:13
Forum: Lexers
Topic: Raku Lexer
Replies: 10
Views: 19489

H, uvviewsoft,

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 :-(
by demanuel
02.06.2021 12:46
Forum: Plugins
Topic: plugin git_status makes switching tab very slow
Replies: 7
Views: 1706

i can depending on my free time.
by demanuel
02.06.2021 08:03
Forum: Lexers
Topic: Raku Lexer
Replies: 10
Views: 19489

Seems good now :-)
by demanuel
01.06.2021 09:22
Forum: Lexers
Topic: Raku Lexer
Replies: 10
Views: 19489

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...
by demanuel
01.06.2021 07:42
Forum: Plugins
Topic: plugin git_status makes switching tab very slow
Replies: 7
Views: 1706

The call to: git symbolic-ref HEAD --short returns only the branch name The call to: git branch -v returns all the branches, the hash, and the last commit. Is it really necessary? Can't be replaced with git branch -l ? Also the first call ret = self.run_git(["symbolic-ref", "HEAD"...
by demanuel
31.05.2021 22:58
Forum: Plugins
Topic: plugin git_status makes switching tab very slow
Replies: 7
Views: 1706

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
by demanuel
31.05.2021 22:45
Forum: Lexers
Topic: Raku Lexer
Replies: 10
Views: 19489

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...
by demanuel
31.05.2021 20:43
Forum: Lexers
Topic: Raku Lexer
Replies: 10
Views: 19489

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...