Re: Colourising command line

2012-08-30 Thread N David Brown
I'm a professional programmer so that's entirely feasible, thank you for letting me know. I haven't looked into how to accomplish the task, it would be a waste of effort were there an existing plugin. All I've done is search for such a plugin, found nothing, then consulted this mailing list as

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Andy Wokula
Am 30.08.2012 04:36, schrieb Tim Chase: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit). That means removing accent marks, cedillas, tildes, etc. Is there some fast transform in Vim that I've missed, or an easy way to go about this?

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Dominique Pellé
Andy Wokula wrote: Am 30.08.2012 04:36, schrieb Tim Chase: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit). That means removing accent marks, cedillas, tildes, etc. Is there some fast transform in Vim that I've missed, or an easy way

Re: vim window clears the terminal history

2012-08-30 Thread John Little
On Thursday, August 30, 2012 1:47:49 AM UTC+12, joe M wrote: Thanks a lot for your analysis. Your observations are spot-on. I'm not sure now. I've installed rxvt-unicode-256color (from the Ubuntu oneiric/universe repository), and it has what I thought was the problematic initialization

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Tim Chase
On 08/29/12 21:46, Salman Halim wrote: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit). That means removing accent marks, cedillas, tildes, etc. Is there some fast transform in Vim that I've missed, or an easy way to go about this?

Re: vim window clears the terminal history

2012-08-30 Thread joe M
u, Aug 30, 2012 at 8:05 AM, John Little john.b.lit...@gmail.com wrote: On Thursday, August 30, 2012 1:47:49 AM UTC+12, joe M wrote: Thanks a lot for your analysis. Your observations are spot-on. I'm not sure now. I've installed rxvt-unicode-256color (from the Ubuntu oneiric/universe

http://www.vim.org/maillist.php references a broken FAQ page (no content)

2012-08-30 Thread Aleksey Tsalolikhin
Hi. I'm new to vim. I was looking for the mailing list and the FAQ. I'd like to report that http://www.vim.org/maillist.php references a broken FAQ page (there is no content on any of the page on the FAQ site and http://vimdoc.sourceforge.net/vimdocschemes.html gives an error) Best, Aleksey

Re: Colourising command line

2012-08-30 Thread Ben Fritz
On Thursday, August 30, 2012 2:50:18 AM UTC-5, N David Brown wrote: I'm a professional programmer so that's entirely feasible, thank you for letting me know. I haven't looked into how to accomplish the task, it would be a waste of effort were there an existing plugin. All I've done is

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Bee
On Aug 30, 7:20 am, Tim Chase v...@tim.thechases.com wrote: On 08/29/12 21:46, Salman Halim wrote: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit).  That means removing accent marks, cedillas, tildes, etc. Is there some fast

Re: vim window clears the terminal history

2012-08-30 Thread joe M
On Thu, Aug 30, 2012 at 10:26 AM, joe M joe9m...@gmail.com wrote: u, Aug 30, 2012 at 8:05 AM, John Little john.b.lit...@gmail.com wrote: On Thursday, August 30, 2012 1:47:49 AM UTC+12, joe M wrote: Thanks a lot for your analysis. Your observations are spot-on. I'm not sure now. I've

Re: How do I define function for toggling textwidth (and echoing along)?

2012-08-30 Thread Andy Wokula
Am 25.08.2012 11:07, schrieb Santosh Kumar: By default I have textwidth set to 78: set textwidth=78 By this setting if I type more than 78 characters in a line, those will be moved to next line. I want a mapping that will toogle that textwidth to 0 (or say disable textwidth), so that I can type

vim: conqterm: high cpu if buffer pause for long time

2012-08-30 Thread ping
hi nico/other conqterm users: it looks this is quite reproducible. let's say I run a long task in conqterm , and for some reason I pause it (by entering normal mode). then I forget about it and keep using my PC for other works... some days later I'll find the CPU high, top shows telnet process

Re: http://www.vim.org/maillist.php references a broken FAQ page (no content)

2012-08-30 Thread Bram Moolenaar
Aleksey Tsalolikhin wrote: Hi. I'm new to vim. I was looking for the mailing list and the FAQ. I'd like to report that http://www.vim.org/maillist.php references a broken FAQ page (there is no content on any of the page on the FAQ site and http://vimdoc.sourceforge.net/vimdocschemes.html

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Christian Brabandt
Hi Benjamin! [reformated] On Mi, 29 Aug 2012, Benjamin R. Haskell wrote: On Wed, 29 Aug 2012, Tim Chase wrote: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit). That means removing accent marks, cedillas, tildes, etc. Just to

Different behavior expanding snippet directly or through inoremap

2012-08-30 Thread skeept
Hi, I use the snippet plugin ultisnips. Assume I have two snippets: snippet snip1 snippet1 !w ( $1 - $2 )$0 endsnippet snippet snip2 snippet2 !w [ $1 - $2 ]$0 endsnippet I use c-j to expand the snippets and move forward to the next placeholder: inoremap NL c-r=UltiSnips_ExpandSnippetOrJump()CR

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Bee
Or slightly simpler: function! AEIOU() ! :help [=* equivalence class for x in split(aeiouny, '\zs') execute ':%s/[[='.x.'=]]/'.x.'/g' endfor endf usage :silent! call AEIOU() ! :help digraph-table Test on: ? ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖ×ØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ Bill -- You

Re: ASCIIfication (removal of accent, cedilla, etc)

2012-08-30 Thread Bee
Tim Chase wrote: On 08/29/12 21:46, Salman Halim wrote: I've got some Portuguese text that I need to perform some transformations on to make them ASCII (7-bit). That means removing accent marks, cedillas, tildes, etc. Is there some fast transform in Vim that I've missed, or an easy

restore last cursor position does not work anymore on my system

2012-08-30 Thread Peng Yu
Hi, I use the following code in ~/.vimrc to enable custor restoration. But it stops working. I suspect that it is due to the recent system upgrade. I posted the vim --version below. Could anybody take a look if this is due to some vim option is disabled? Thanks! From Bram: When editing a file,

Re: vim window clears the terminal history

2012-08-30 Thread Chris Jones
On Thu, Aug 30, 2012 at 01:34:10PM EDT, joe M wrote: [..] Anyway, just a heads-up if anyone is interested. I certainly do. Thanks for bringing this to the list's attention. Reading through the thread, I'm pretty sure you stated somewhere along the line that the behavior you reported occurs