acheronfail

Results 89 comments of acheronfail

I assume it's coming from here: https://github.com/ctdk/homebrew-ctdk/blob/master/bsdgames-osx.rb#L16

See this Sublime Text issue for reference: https://github.com/SublimeTextIssues/Core/issues/2226 Possible solution may be implementing something like https://github.com/ali-rantakari/trash/blob/master/trash.m#L265-L340 in send2trash using ctypes. According to https://github.com/ali-rantakari/trash#the-put-back-feature the only way to enable "Put Back"...

My knowledge of python's ctypes isn't the best, but IIUC they don't provide a nice interface into Objective-C, so replicating the method in https://github.com/ali-rantakari/trash/blob/master/trash.m#L265-L340 might be rather difficult (at least,...

I'm gonna try this using ctypes anyway, just because it's a huge benefit to not have to compile in order have an extra feature. If it ends up being too...

@hsoft in your code you have: ```py class FSRef(Structure): _fields_ = [('hidden', c_char * 80)] ``` I need to do the same for `AppleEvent` and `AEDesc`. Any pointers on how...

I think our options are: 1. Include manually compiled module - ✅ easy to maintain - ❌ requires compilation to use the module 2. Implement using `ctypes` - ✅ no...

FWIW I'm also seeing this while using `rust-analyzer` for LSP. Formatting is janking the viewport's scroll around.

Just another suggestion: Rather than a separate `__meta__` key, what are your thoughts on prepending the date type to the value? Meaning: ```js const d = new Date(); const s...

I would love this, it's a really cool feature of `nnn.vim`: https://github.com/mcchrish/nnn.vim ``` let g:nnn#layout = { 'window': { 'width': 0.9, 'height': 0.6, 'highlight': 'Debug' } } ```

Looks like you're using Windows, unfortunately I don't have a Windows machine to test this on, but you might be able to find something in #13, #14 or #17. If...