Nathan Lanza
Nathan Lanza
Ping. The example in the documentation for a command with a `range` gives me a `range` whose value is nothing but a list with two elements that are both the...
> One potential roadblock with any advanced usecase features, such as this one, is the fact that an arbitrary number of parameters may be hidden beneath variable references which the...
How are you doing this? The `debug-objc` binary has `LC 13: LC_LOAD_DYLIB /usr/lib/libobjc.A.dylib`. Are you manually `install_name_tool`ing this to a relative path? I had to use `DYLD_INSERT_LIBRARIES=path/to/built/libobjc.A.dylib`. Not even sure...
I don’t know how to use Xcode. I just did ‘’’ DYLD_INSERT_LIBRARIES=path/to/libobjc.A.dylib lldb path/to/debug-objc ‘’’
`ld64` links against the dylibs install path. For the built `libobjc.A.dylib` this is `/usr/lib/libobjc.A.dylib` as set by the `Installation Directory` value of `/usr/lib` in Xcode. So `ld64` will put that...
> _task_restartable_ranges_register is a new macOS 10.15 symbol. I'm guessing you just need to update your OS + Xcode.
async is a python3 keyword. Just change the variable name.
> Moreover, I'm sure there is a debugger-specific way to just save the current breakpoints to a file, and then load them back another time. Yea, that's what I was...
For an extra data point -- running with -n166 cvise grinds to a halt. htop showing nothing happening in any cvise processes for long periods of time. Drop it down...
This seems to be where vim-ccls handles the same issue. Does that make sense? https://github.com/m-pilia/vim-ccls/blob/b8e3afaca0578ce96f8d7eefd2093e7594a19424/autoload/ccls/lsp.vim#L75