Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #9 on issue 247 by JeanPhilippe.bernardy: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 I forgot to mention that we depend on results returned lazily (to my knowledge only regex-tdfa does this), and some other internals of tdfa. -- You re

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #8 on issue 247 by kballard: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 Well sure, if we want to implement a fully-compatible parser ourselves. Also, if regex-tdfa doesn't support POSIX [[:<:]]/[[:>:]] then we can't actually replicate \<

patch applied (yi): Add batch UI

2009-03-19 Thread Jean-Philippe Bernardy
Thu Mar 19 14:53:18 EDT 2009 jeanphilippe.berna...@gmail.com * Add batch UI This should address the FAQ: why did the build fail to build yi without error message? M ./Yi/Config/Default.hs +2 A ./Yi/UI/Batch.hs M ./yi.cabal -3 +2 --~--~-~--~~~---~--~

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #7 on issue 247 by JeanPhilippe.bernardy: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 regex-tdfa is pure haskell. In theory we'd just need to define our own parsers for regexes and use the same engine. -- You received this message becau

Re: Issue 236 in yi-editor: emacs keymap on mac terminals needs c-v twice to pagedown

2009-03-19 Thread Jean-Philippe Bernardy
They were classified as spam in the list :p I just let them through now. On Thu, Mar 19, 2009 at 7:43 PM, Kevin Ballard wrote: > Hrm, when no comment is entered for a change, is google code re-sending the > previous comment email? I just received a duplicate of the original Comment > #10 email,

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #6 on issue 247 by kballard: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 On second thought, if the regex library is only used for user-input regexes and not for any built-in functionality, maybe we could allow the user to pick their specif

Re: Issue 236 in yi-editor: emacs keymap on mac terminals needs c-v twice to pagedown

2009-03-19 Thread Kevin Ballard
Hrm, when no comment is entered for a change, is google code re-sending the previous comment email? I just received a duplicate of the original Comment #10 email, complete with original timestamp, but the headers indicate that it really is a new email that was just received. On Fri, Mar 6, 2009 at

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #5 on issue 247 by kballard: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 Huh, I didn't know that. The standard POSIX regex uses [[:<:]] and [[:>:]] for the same purpose. In any case, assuming regex-tdfa is based on PCRE, that would explai

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Updates: Labels: Component-NotYi Comment #4 on issue 247 by JeanPhilippe.bernardy: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 (No comment was entered for this change.) -- You received this message because you are listed in the owner or C

Issue 236 in yi-editor: emacs keymap on mac terminals needs c-v twice to pagedown

2009-03-19 Thread codesite-noreply
Comment #10 on issue 236 by em...@accela.net: emacs keymap on mac terminals needs c-v twice to pagedown http://code.google.com/p/yi-editor/issues/detail?id=236 Thanks for trying it; this is filed as http://trac.haskell.org/vty/ticket/16 -- You received this message because you are listed in t

Issue 247 in yi-editor: Non-standard regexes not supported

2009-03-19 Thread codesite-noreply
Comment #3 on issue 247 by deniz.a.m.dogan: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 \< and \> are not Vim-specific, I use them in Emacs all the time. According to http://www.regular-expressions.info/wordboundaries.html they are GNU extens

Re: ack does not print anything and does not return in an interactive buffer

2009-03-19 Thread Emily Backes
> There is no way to send the "end of file" signal that ack (or grep, or > anything) expects. > I have no idea how to do that in fact. Could close its stdin when all data is sent to it. Should probably be a separate function. >> I never get the prompt back >> I note that in a yi interactive s

Re: darcs patch: Fix minibuffer issue in multiwindow environment

2009-03-19 Thread Kevin Ballard
Both vim and emacs open the minibuffer at the very bottom of the frame regardless of the current window layout. On Thu, Mar 19, 2009 at 2:03 AM, nicolas.pouillard < nicolas.pouill...@gmail.com> wrote: > > Excerpts from Jean-Philippe Bernardy's message of Thu Mar 19 09:13:26 +0100 > 2009: > > > >

Re: Trouble building Yi

2009-03-19 Thread Deniz Dogan
Ah, apparently I didn't have Vty installed. Thanks, I would've never figured that out. 2009/3/19 Jean-Philippe Bernardy : > > try adding the -fvty flag? > > On Thu, Mar 19, 2009 at 4:30 PM, Deniz Dogan > wrote: >> >> Hi >> >> I'm having trouble building Yi from a fresh "darcs get".  For some >

patch applied (yi): Fix a few compatibility issues on Windows.

2009-03-19 Thread Jean-Philippe Bernardy
Thu Mar 19 11:07:29 EDT 2009 Felix Martini * Fix a few compatibility issues on Windows. Cabal should detect that the vty package cannot be build on Windows but it does not. So we force cabal not to use vty on Windows. M ./Yi/Keymap/Vim.hs -1 +5 M ./yi.cabal -2 +2 --~--~---

Re: Trouble building Yi

2009-03-19 Thread Jean-Philippe Bernardy
try adding the -fvty flag? On Thu, Mar 19, 2009 at 4:30 PM, Deniz Dogan wrote: > > Hi > > I'm having trouble building Yi from a fresh "darcs get".  For some > reason, only the parser test gets built. > > I did this: > darcs get --lazy http://code.haskell.org/yi/ > cd yi > ln -s ~/.yi/yi.hs Hacke

Re: ack does not print anything and does not return in an interactive buffer

2009-03-19 Thread Jean-Philippe Bernardy
There is no way to send the "end of file" signal that ack (or grep, or anything) expects. I have no idea how to do that in fact. Cheers, JP. On Thu, Mar 19, 2009 at 4:25 PM, cognominal wrote: > > I am using ack 1.86 and a darcs mirror of the latest yi. > One can download ack http://betterthang

Trouble building Yi

2009-03-19 Thread Deniz Dogan
Hi I'm having trouble building Yi from a fresh "darcs get". For some reason, only the parser test gets built. I did this: darcs get --lazy http://code.haskell.org/yi/ cd yi ln -s ~/.yi/yi.hs HackerMain.hs # Contents of ~/.yi/yi.hs is copied verbatim from Yi.Config.Default cabal configure --user

ack does not print anything and does not return in an interactive buffer

2009-03-19 Thread cognominal
I am using ack 1.86 and a darcs mirror of the latest yi. One can download ack http://betterthangrep.com/. In yi in emacs mode I do M-x shell do get an interactive shell. $ cd ~/darcs/yi $ ack line I never get the prompt back I note that in a yi interactive shell, the following does not print

Issue 86 in yi-editor: Pango-based UI

2009-03-19 Thread codesite-noreply
Comment #7 on issue 86 by JeanPhilippe.bernardy: Pango-based UI http://code.google.com/p/yi-editor/issues/detail?id=86 Status update: TODO: * mouse: * mouse selection extending beyond the window (selection => scrolling) * scrollbars * copy/paste of X selection/gtk clipboard * no

Issue 225 in yi-editor: status bar does not display file path in pango frontend

2009-03-19 Thread codesite-noreply
Updates: Status: Fixed Comment #3 on issue 225 by JeanPhilippe.bernardy: status bar does not display file path in pango frontend http://code.google.com/p/yi-editor/issues/detail?id=225 Thanks a lot, fixed! -- You received this message because you are listed in the owner or CC fields o

patch applied (yi): Fix minibuffer issue in multiwindow environment

2009-03-19 Thread Jean-Philippe Bernardy
Mon Mar 16 18:09:34 EDT 2009 ke...@sb.org * Fix minibuffer issue in multiwindow environment Ignore-this: 69c967424b2ce304af46058e8b8d2d1c M ./Yi/MiniBuffer.hs -1 +3 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com http://groups.

Re: darcs patch: Fix minibuffer issue in multiwindow environment

2009-03-19 Thread nicolas . pouillard
Excerpts from Jean-Philippe Bernardy's message of Thu Mar 19 09:13:26 +0100 2009: > > On Thu, Mar 19, 2009 at 12:22 AM, Kevin Ballard wrote: > > If we do as you suggest and sort the minibuffer last instead of inserting it > > last in the window list, then that will cause problems when we add th

Re: darcs patch: Fix minibuffer issue in multiwindow environment

2009-03-19 Thread Jean-Philippe Bernardy
On Thu, Mar 19, 2009 at 12:22 AM, Kevin Ballard wrote: > If we do as you suggest and sort the minibuffer last instead of inserting it > last in the window list, then that will cause problems when we add the > ability to do a vertical split instead of just horizontal splits (I want to > change the

patch applied (yi): Split tags Makefile target into tags and TAGS

2009-03-19 Thread Jean-Philippe Bernardy
Wed Mar 18 23:53:43 EDT 2009 ke...@sb.org * Split tags Makefile target into tags and TAGS Ignore-this: 94bb9b274700691432876630ddb2545f The old tags target did not play nice with case-insensitive filesystems. Split it into tags and TAGS targets so the user can pick which type of tags

patch applied (yi): Update tags Makefile target to index HConf

2009-03-19 Thread Jean-Philippe Bernardy
Wed Mar 18 23:53:19 EDT 2009 ke...@sb.org * Update tags Makefile target to index HConf Ignore-this: d99d6d362300edce141756102549bdc8 M ./Makefile -1 +1 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com http://groups.google.com/gr

patch applied (yi): Fix scrollToCursorB to use the window height

2009-03-19 Thread Jean-Philippe Bernardy
Wed Mar 18 20:39:27 EDT 2009 ke...@sb.org * Fix scrollToCursorB to use the window height Ignore-this: 99f090938300c38c7b1880cdafa52c16 M ./Yi/Buffer/HighLevel.hs -1 +2 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com http://grou