Francisco Lopes
Francisco Lopes
@wbthomason I don't know the codebase, so in thesis that seems ok to me.
I've tried to add support locally since it should have been a trivial copy of the Haskell/Elm implementation but it seems to enter in conflict with the well known https://github.com/raichoo/purescript-vim...
I've discovered [there's a new fix](http://vi.stackexchange.com/a/5698/6324) for such cases of wishing to apply conceal over syntax groups through `:call matchadd('Conceal', '\\', 10, 99, {'conceal': 'λ'})`, for example, Maybe it should...
FYI, this is how I'm applying the lambda conceal on my `.vimrc` now: ``` vim set conceallevel=2 au FileType purescript set concealcursor=vin au WinEnter,BufEnter,BufRead,FileType,Colorscheme * \ if exists('w:lambda_conceal') | \...
I installed this for GRIS but I still get [the white screen](https://github.com/ValveSoftware/Proton/issues/2516) that's supposedly due to Windows Media Foundation support. Any tips why this would simply not work at all?...
Additional log with debug messages when I click the Trakt TV shows Collection button: - [quasar.1.log](https://gist.githubusercontent.com/oblitum/fe719e5087066dda2ccb9b6f4ae40bea/raw/7a5237e98c2a30370e4328fa9059f7066e3762ce/quasar.1.log) - [quasar.2.log](https://gist.githubusercontent.com/oblitum/fe719e5087066dda2ccb9b6f4ae40bea/raw/7a5237e98c2a30370e4328fa9059f7066e3762ce/quasar.2.log) On quasar.2.log there's "json: cannot unmarshal array into Go value of type...
@kaiphat you could try camspiers/lens.vim to handle this with more flexibility and smarter.
@jtroo to "make someone pay me" doesn't sound about right. There's plenty options currently available, and I'm looking into redeveloping it when I can, while I admit it has been...
I have `.python-version` in project root folder, which has the virtualenv python version, which is the one for `which python`. I don't understand why it's not picked by default.
My current workaround: ```vim call coc#config('python', { \ 'jediEnabled': v:false, \ 'pythonPath': split(execute('!which python'), '\n')[-1] \ }) ``` But I've found it to present several issues. On a virtualenv, I...