Results 10 comments of naddeoa

Hmm, I'm not sure. For me, if I edit a file with `vim test.notes` and execute `:set ft?` then the response is `filetype=notes`. You're saying your vim doesn't do this?...

As a follow up, it looks like the following function in `after/plugin` is setting the `concealcursor` option. ``` vim "{{{1 function! s:SetConcealOption() function! s:SetConcealOption() if ! exists("b:indentLine_ConcealOptionSet") let b:indentLine_ConcealOptionSet =...

It would be great if the implementation here would also work for enums. ```kotlin enum class Options(val defaultValue: String? = null) { OPTION_1("foo"), OPTION_2 // no default } ``` Documenting...

I'm hitting this now on a React Native app. I'm seeing duplicate network requests being fired through the Android profiler. Looking over the conversation here I'm actually not sure if...

Has there been progress on this lately? I work at a company with a very large and mature build system and I think I have a few scenarios that I...

Sure thing. I'll spin up a thread about it tomorrow

As I was typing it became pretty obvious that I need to use the package system a little more before making suggestions. I'm going to attempt to create a library...

Ok, I just submitted a thread for approval. Feel free to let me know if you're looking for something a little different. I just tried to explain my issue and...

I'm running into this too. I think a concrete example might help to set expectations. Take the following data in `data.csv` (yoinked from a hacker news data set) ```csv id,by,author,time,time_ts,text,parent,deleted,dead,ranking...

Added the DRAFT prefix to get some feedback on the unwrapping. I don't write rust enough to know exactly what's safe/best practices there.