Issue 182710
Summary LLDB command completion doesn't handle whitespaces in the typename
Labels new issue
Assignees
Reporter NekoCdr
    LLDB command completion doesn't handle whitespaces in the typename. For example:
```
(lldb) type synthetic add 'Goo<int, char>' -l test
(lldb) type synthetic list
-----------------------
Category: default
-----------------------
Goo<int, char>:  Python class test
-----------------------
Category: VectorTypes
-----------------------
-----------------------
Category: system
-----------------------
```


When we type `type synthetic delete` and call completion, status quo is:
```
(lldb) type synthetic delete Goo<int, char>
```

But we want the typename to be in quotes instead:
```
(lldb) type synthetic delete 'Goo<int, char>'
```
_______________________________________________
llvm-bugs mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to