Re: darcs patch: Added Emacs M-m keymap binding. (and 2 more)

2009-03-20 Thread Jean-Philippe Bernardy
On Fri, Mar 20, 2009 at 5:53 PM, wrote: > Tue Mar 17 20:05:26 MST 2009  kq1qu...@gmail.com >  * Added Emacs M-m keymap binding. > > Thu Mar 19 22:31:17 MST 2009  kq1qu...@gmail.com >  * Added Buffer (unitSep, unitSepThisLine, doIfCharB) and justOneSep action It's not very clear to me what's the

patch applied (yi): Added Buffer (unitSep, unitSepThisLine, doIfCharB) and justOneSep action

2009-03-20 Thread Jean-Philippe Bernardy
Fri Mar 20 01:31:17 EDT 2009 kq1qu...@gmail.com * Added Buffer (unitSep, unitSepThisLine, doIfCharB) and justOneSep action Ignore-this: f2646f12922eec462668d33d49721a21 M ./Yi/Buffer/Normal.hs -1 +20 M ./Yi/Keymap/Emacs.hs +2 M ./Yi/Keymap/Emacs/Utils.hs +11 --~--~-~--~-

patch applied (yi): Added joinLinesE Emacs action

2009-03-20 Thread Jean-Philippe Bernardy
Fri Mar 20 02:45:42 EDT 2009 kq1qu...@gmail.com * Added joinLinesE Emacs action Ignore-this: a842f5bda28e854a28dc3c3315dd8d79 M ./Yi/Keymap/Emacs.hs +2 M ./Yi/Keymap/Emacs/Utils.hs +7 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegr

patch applied (yi): Added Emacs M-m keymap binding.

2009-03-20 Thread Jean-Philippe Bernardy
Tue Mar 17 23:05:26 EDT 2009 kq1qu...@gmail.com * Added Emacs M-m keymap binding. Ignore-this: 8588f53bbd99f151a7f898bfd6a2f5b5 M ./Yi/Keymap/Emacs.hs +1 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com http://groups.google.com/

patch applied (yi): Simplify selection of GTK/Pango icon file location.

2009-03-20 Thread Jean-Philippe Bernardy
Tue Mar 17 20:02:57 EDT 2009 kq1qu...@gmail.com * Simplify selection of GTK/Pango icon file location. Ignore-this: 6daf1e5e66778ead7ff0ea1f841c3e84 M ./Yi/UI/Gtk/Utils.hs -2 +2 --~--~-~--~~~---~--~~ Yi development mailing list yi-devel@googlegroups.com ht

Re: ANN: regex-tdfa-1.1.0

2009-03-20 Thread Chris Kuklewicz
>From hackage, I suspect you use use >http://hackage.haskell.org/cgi-bin/hackage-scripts/package/utf8-string for the utf8 translation? To get this working with regex-tdfa I need only one very small thing. You have to wrap the Lazy ByteString in a newtype so the instance can be different. In fa

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

2009-03-20 Thread codesite-noreply
Comment #12 on issue 247 by nicolas.pouillard: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 I'm in favor of the GNU one that includes the perl one. -- You received this message because you are listed in the owner or CC fields of this issue, or bec

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

2009-03-20 Thread codesite-noreply
Comment #11 on issue 247 by viraptor: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 What I was trying to achieve in the first place was changing the '*' vim binding to search only for whole words. I'm not aware of any other way to implement that and

Re: ANN: regex-tdfa-1.1.0

2009-03-20 Thread Jean-Philippe Bernardy
I'm using the lazy ByteString representation to match against, so it's no surprise that it fails. On Fri, Mar 20, 2009 at 11:41 AM, Chris Kuklewicz wrote: > With [Char] and (Seq Char) the text is full unicode. > > With ByteString and ByteString.Lazy you are really using > ByteString.Char8 and B

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

2009-03-20 Thread codesite-noreply
Comment #10 on issue 247 by turingtest: Non-standard regexes not supported http://code.google.com/p/yi-editor/issues/detail?id=247 Hi - I wrote regex-tdfa. If you want a feature, please send me a reasonable proposal. I wrote regex-tdfa to provide the correct results according to the POSIX

Re: ANN: regex-tdfa-1.1.0

2009-03-20 Thread Chris Kuklewicz
With [Char] and (Seq Char) the text is full unicode. With ByteString and ByteString.Lazy you are really using ByteString.Char8 and ByteString.Lazy.Char8 Here is a test (I saved the source file in utf8): import Text.Regex.TDFA text = "☮☯♲☢☣☠☃" regex = "(☢|☣)" search :: [[String]] search = text =

Re: ANN: regex-tdfa-1.1.0

2009-03-20 Thread Jean-Philippe Bernardy
Am I right that this library does not support unicode in regexes? Searching for unicode strings in Yi does not work, but ny cursory browsing of the code, I cannot find the reason why. Thanks, JP. On Wed, Mar 18, 2009 at 1:23 PM, ChrisK wrote: > I have just uploaded the new regex-tdfa-1.1.0 to h