You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rust Seems to not be so accurate:
In the following rust code goto_next_parameter will go to the following location:
'rawr: &str'
'"tommy"'
'name: String::from("mycoolguystring")'
fnmyfunc(rawr:&str){println!("{}", rawr);}fnmain(){myfunc("tommy");let dog = MyStruct{name:String::from("mycoolguystring")};println!("{}", dog.name)}
In the following go code goto_next_parameter will go to the following 3 locations:
's *Dog'
's string'
'"hello"'
In the following zig code goto_next_parameter will go to the following 1 location:
'str: []const u8'
I'd expect goto_next_parameter to go to
'str: []const u8'
'"MyString"'
'"str {s}"'
'.{str}'
Is this expected behavior, how can I fix this? Do we need to adjust Zig Treesitter or something in the helix code?
The text was updated successfully, but these errors were encountered: