Re: Is Yi concurrent yet?

2016-06-12 Thread Dmitry Ivanov
While Yi doesn't explicitly provide any means to do concurrency, there are two relevant points: 1. YiM has access to IO, which means you can access forkIO, MVars, async, stm, etc there 2. Yi has an action queue which can be used as a synchronization point when several threads want to access

Re: How can I change the size of minibuffers created by plugins?

2016-06-12 Thread Dmitry Ivanov
Minibuffer is supposed to be as small as possible while showing it's content (and it's still buggy in some circumstances). If you want to have control over its size, you probably want to have a Buffer instead. If you want to make that change in yi-fuzzy-open, I'd be fine with it. On Sunday, Jun

Re: Is Yi concurrent yet?

2016-06-12 Thread Cody Goodman
Thanks for the help and especially for the example! - Cody On Sunday, June 12, 2016 at 6:46:55 AM UTC-5, Dmitry Ivanov wrote: > > > While Yi doesn't explicitly provide any means to do concurrency, there are > two relevant points: > > 1. YiM has access to IO, which means you can access forkIO,

Re: How can I change the size of minibuffers created by plugins?

2016-06-12 Thread Cody Goodman
I think I will just use a buffer then, thanks! On Sunday, June 12, 2016 at 6:50:42 AM UTC-5, Dmitry Ivanov wrote: > > Minibuffer is supposed to be as small as possible while showing it's > content (and it's still buggy in some circumstances). If you want to have > control over its size, you prob

Replacing my daily editor with Yi

2016-06-12 Thread Cody Goodman
I've become a bit disenchanted with instabilities, lack of speed, and various other pain points in emacs. I also love Haskell and the idea of Yi. I'm making it my goal to use Yi as my daily editor as quickly as possible so that I can dogfood it and make it work for my use cases. Can anyone giv

Re: Code Completion?

2016-06-12 Thread Cody Goodman
In Minibuffer.hs there are some completion related functions like `simpleComplete` which might be what you are looking for. On Sunday, February 8, 2015 at 12:27:03 AM UTC-6, Thomas DuPlessis wrote: > > Is there any way to enable code completion features in Yi? Also is there a > way to write exte