Issue 265 in yi-editor: Slow pasting

2009-05-09 Thread codesite-noreply
Comment #14 on issue 265 by coreyoconnor: Slow pasting http://code.google.com/p/yi-editor/issues/detail?id=265 Interesting idea Jean. I will keep that in mind and make sure I do not make the equations for queueing an update for the vty renderer too strict. -- You received this message because

Issue 266 in yi-editor: Background style disappears when moving point over it

2009-05-09 Thread codesite-noreply
Comment #2 on issue 266 by deniz.a.m.dogan: Background style disappears when moving point over it http://code.google.com/p/yi-editor/issues/detail?id=266 I'm using xterm. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this i

Issue 266 in yi-editor: Background style disappears when moving point over it

2009-05-09 Thread codesite-noreply
Comment #1 on issue 266 by jeffwheeler: Background style disappears when moving point over it http://code.google.com/p/yi-editor/issues/detail?id=266 I am unable to replicate this issue on my terminal (I use gnome-terminal). What terminal are you using? -- You received this message because

Re: Does Yi work with GHC 6.10.3?

2009-05-09 Thread Jeff Wheeler
On Sat, 2009-05-09 at 16:46 +0200, Deniz Dogan wrote: > The subject says it all, does Yi work with GHC 6.10.3? I would test it > myself it it wasn't such a hassle. Seems to be working great on my machine. Jeff Wheeler --~--~-~--~~~---~--~~ Yi development mailin

Re: Does Yi work with GHC 6.10.3?

2009-05-09 Thread Deniz Dogan
2009/5/9 Gwern Branwen : >> The subject says it all, does Yi work with GHC 6.10.3? I would test it >> myself it it wasn't such a hassle. >> >> Thanks, >> Deniz > > It's worked fine for me with 6.10.2 (darcs of course). I don't see why > .3 would change that, since it's supposed to be just bugfixes

Re: Does Yi work with GHC 6.10.3?

2009-05-09 Thread Gwern Branwen
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 On Sat, May 9, 2009 at 10:46 AM, Deniz Dogan wrote: -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Use GnuPG with Firefox : http://getfiregpg.org (Version: 0.7.5) iEYEAREKAAYFAkoFl9wACgkQvpDo5Pfl1oKeBwCcCvhMQmYdCwuhSWHA7L

Does Yi work with GHC 6.10.3?

2009-05-09 Thread Deniz Dogan
The subject says it all, does Yi work with GHC 6.10.3? I would test it myself it it wasn't such a hassle. Thanks, Deniz --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com http://groups.google.com/group/yi-devel -~--~~~~

Issue 266 in yi-editor: Background style disappears when moving point over it

2009-05-09 Thread codesite-noreply
Status: New Owner: deniz.a.m.dogan Labels: Type-Defect Priority-Low Component-UI-Vty Usability Component-UI New issue 266 by deniz.a.m.dogan: Background style disappears when moving point over it http://code.google.com/p/yi-editor/issues/detail?id=266 What steps will reproduce the problem? 1.

patch applied (yi): Adding Whitespace mode.

2009-05-09 Thread Deniz Dogan
Sat May 9 08:41:46 EDT 2009 deniz.a.m.do...@gmail.com * Adding Whitespace mode. Ignore-this: f2fb19639b85d69894c62d2608a652f5 Is it a known bug that the background styling disappears when moving point over it? M ./Yi/Config/Default.hs +1 A ./Yi/Lexer/Whitespace.x M ./Yi/M

Re: Making a mode insert tabs when hitting tab

2009-05-09 Thread Deniz Dogan
Sorry, I just realized this is in the documentation. modeIndent = \_ _ -> insertB '\t' ...worked perfectly well. 2009/5/9 Jean-Philippe Bernardy : > > You should probably redefine the tab key in your own keymap. You could > also define modeIndent for your mode; but that really should be an > au

Re: Making a mode insert tabs when hitting tab

2009-05-09 Thread Jean-Philippe Bernardy
You should probably redefine the tab key in your own keymap. You could also define modeIndent for your mode; but that really should be an auto indent function. -- JP On Sat, May 9, 2009 at 2:26 PM, Deniz Dogan wrote: > > Hi > > I have another question... How do I make my custom mode insert an >

Making a mode insert tabs when hitting tab

2009-05-09 Thread Deniz Dogan
Hi I have another question... How do I make my custom mode insert an actual tab character at point when I hit tab? I used this piece of code, but Yi seems to be inserting tabs at the beginning of the line no matter what I do! modeIndentSettings = IndentSettings { expandTabs = False, tabSize = 8,

Issue 265 in yi-editor: Slow pasting

2009-05-09 Thread codesite-noreply
Comment #13 on issue 265 by m.niloc: Slow pasting http://code.google.com/p/yi-editor/issues/detail?id=265 Corey, In my test there's no difference in runtime between vty 3.1.8 and 3.1.9, and Graphics.Vty barely shows up in the profile: less than 10%. And it's asynchronous so this 10% isn't eve

Re: Defining custom StyleNames for a simple mode

2009-05-09 Thread Jean-Philippe Bernardy
On Sat, May 9, 2009 at 2:57 AM, Deniz Dogan wrote: > > Hi > > I'm writing a little mode for Yi which will only do syntax > highlighting. What I'd like to know is how I can define my own text > styles, i.e. not use commentStyle etc. from the user's theme. All of > the other modes seem to use Style

Issue 265 in yi-editor: Slow pasting

2009-05-09 Thread codesite-noreply
Comment #12 on issue 265 by JeanPhilippe.bernardy: Slow pasting http://code.google.com/p/yi-editor/issues/detail?id=265 To 11: This is already done. -- You received this message because you are listed in the owner or CC fields of this issue, or because you starred this issue. You may adjust you

Issue 265 in yi-editor: Slow pasting

2009-05-09 Thread codesite-noreply
Comment #11 on issue 265 by pierreetienne.meunier: Slow pasting http://code.google.com/p/yi-editor/issues/detail?id=265 In fact what you need is kind of a lazy parser : instead of making the haskellish yacc return the whole ast, yi just needs it to return the current state of the stack automat

Issue 265 in yi-editor: Slow pasting

2009-05-09 Thread codesite-noreply
Comment #10 on issue 265 by JeanPhilippe.bernardy: Slow pasting http://code.google.com/p/yi-editor/issues/detail?id=265 I'd like to add that in the presence of lazy evaluation, this is somewhat trickier than it might seem. It might be that you think that the computation is done in the "main