Re: Happy birthday!

2020-11-05 Thread Jerry Peek at sites4people.com
On 11/2/2020 11:19, Bram Moolenaar wrote: Hello Vim users, 29 years ago the very first version of Vim was built and distributed. And Vim is more popular than ever before! So, what's going on these days? VIM 9 DEVELOPMENTS - MAKING VIM SCRIPT FASTER AND EASIER TO USE ... I started using Unix

Re: Meta: How to read this forum/board now that Google Groups is busted

2020-09-07 Thread Jerry Peek at sites4people.com
It's been a couple of weeks since this thread ended, but FWIW... On 8/23/2020 03:13, meine wrote: On Sat, Aug 22, 2020 at 08:00:52PM +0100, 'Ottavio Caruso' via vim_use wrote: Maybe time to move this mailing list away from Google Groups? Last year we had trouble with the Inte

Re: Can you explain to me what this script is doing?

2015-03-04 Thread at
On Wednesday, March 4, 2015 at 1:29:15 PM UTC-6, ZyX wrote: > 2015-03-04 16:04 GMT+03:00 at : > > > > On Tuesday, March 3, 2015 at 10:37:12 AM UTC-6, ZyX wrote: > > > 2015-03-03 17:17 GMT+03:00 at : > > > I found the following code on a stackexchange post: &

Re: Can you explain to me what this script is doing?

2015-03-04 Thread at
On Tuesday, March 3, 2015 at 10:37:12 AM UTC-6, ZyX wrote: > 2015-03-03 17:17 GMT+03:00 at : > I found the following code on a stackexchange post: > http://tex.stackexchange.com/questions/1548/intelligent-paragraph-reflowing-in-vim > > > > The code is for environment-awar

Can you explain to me what this script is doing?

2015-03-03 Thread at
I found the following code on a stackexchange post: http://tex.stackexchange.com/questions/1548/intelligent-paragraph-reflowing-in-vim The code is for environment-aware formatting in LaTeX. It's not longer working quite the way I want it---I think it is interacting with one of my other plugins

Re: Slow Syntax Highlighting with Latex

2013-06-28 Thread at
On Friday, June 28, 2013 9:47:18 AM UTC-5, Ben Fritz wrote: > On Thursday, June 27, 2013 7:07:55 PM UTC-5, at wrote: > > I am having problems with slow speeds when using syntax highlighting in > > GVim using the native latex syntax highlighting. > > > > What ve

Slow Syntax Highlighting with Latex

2013-06-27 Thread at
I am having problems with slow speeds when using syntax highlighting in GVim using the native latex syntax highlighting. By slow I mean the response time between keyboard and screen is lagged. I can confirm that it is due to syntax highlighting by turning off all highlighting--then the response

Re: figuring out what a mystery key binding is

2010-07-04 Thread at
On Jul 4, 10:48 am, Tony Mechelynck wrote: > On 04/07/10 15:33, at wrote: > > > There's some keybinding in the latex-suite plugin that I occasionally > > hit when I am typing quickly. The problem is it I can't figure out > > what it is since it only happens whe

figuring out what a mystery key binding is

2010-07-04 Thread at
There's some keybinding in the latex-suite plugin that I occasionally hit when I am typing quickly. The problem is it I can't figure out what it is since it only happens when I slur my key strokes. And there are a lot of keybindings in that plugin. Any suggestions on how to track this down so I can

Re: grouping buffers?

2010-02-08 Thread at
On Feb 8, 7:08 pm, at wrote: > thanks! > > On Feb 7, 8:48 am, Paul wrote: > > > On Sun, Feb 07, 2010 at 04:19:44AM -0800, at wrote: > > >I frequently work with a split vim window with two files that are > > >related. I'd like to be able to change both buf

Re: grouping buffers?

2010-02-08 Thread at
thanks! On Feb 7, 8:48 am, Paul wrote: > On Sun, Feb 07, 2010 at 04:19:44AM -0800, at wrote: > >I frequently work with a split vim window with two files that are > >related. I'd like to be able to change both buffers at once to two > >other files that are related. So th

grouping buffers?

2010-02-07 Thread at
I frequently work with a split vim window with two files that are related. I'd like to be able to change both buffers at once to two other files that are related. So that if I had 4 buffers open and a split window I could with one command go from seeing A and B to seeing C and D. Anyone kn

Re: changing what counts as a paragraph

2009-08-19 Thread at
Thanks. I'm surprised there's no better way. I can't get used to watching my spaces at the end of equation lines, so I think I'll go for formatoptions=tcqw and then make a binding to gwap that I can hit occasionally. On Aug 19, 7:11 am, "A. S. Budden" wrote: >

changing what counts as a paragraph

2009-08-18 Thread at
My .tex files typically look like... -- This is some text that I'm writing in a paragraph, blah blah blah, etc. etc. \begin{equation} a = b + c \end{equation} --- I currently have formatoptions = tcqwa. This works great for the text pa

Re: change directory on file load

2009-08-10 Thread at
thanks to all, that was very helpful! On Aug 10, 8:11 pm, Francisco Dibar wrote: > On Mon, Aug 10, 2009 at 5:47 PM, at wrote: > > > I'd like vim to set the current working directory to that of the file > > I am editing when that file is opened. (This is convenient if

change directory on file load

2009-08-10 Thread at
I'd like vim to set the current working directory to that of the file I am editing when that file is opened. (This is convenient if I open the file by double clicking, say.) Should be easy enough to do with an autocommand. But I haven't been able to find out how I can determine what the directory

Re: testing for an empty file

2009-07-27 Thread at
Thanks for the suggestions. I'll try Maxim's approach first. On Jul 27, 4:56 pm, Ben Fritz wrote: > On Jul 27, 2:07 pm, at wrote: > > > I'm using a very nice template plugin called tSkeleton. Right now I'm > > operating it using an autocmd in my .v

testing for an empty file

2009-07-27 Thread at
I'm using a very nice template plugin called tSkeleton. Right now I'm operating it using an autocmd in my .vimrc: autocmd BufNewFile *.f90 TSkeletonSetup fortran.f90 This works great when I start a new buffer from within .vim. However sometimes I want to touch and name a new file and the

Re: syntax highlighting does not work with :e ?

2009-07-24 Thread at
On Jul 24, 7:50 pm, "John Beckett" wrote: > at wrote: > > If I do this: > >     1. Start gvim > >     2. :e test.f90 > > Then I get messed up syntax highlighting (i.e. there is some > > color, but its not right) > > > However, if I do this

syntax highlighting does not work with :e ?

2009-07-24 Thread at
Basic question but I couldn't find anything in the documentation... If I do this: 1. Start gvim 2. :e test.f90 Then I get messed up syntax highlighting (i.e. there is some color, but its not right) However, if I do this: 1. Create a file called test.f90 2. Double click on it in my

Re: shell commands from within gvim

2009-07-13 Thread at
ed yet. An easy solution to a bewildering problem! On Jun 25, 6:06 pm, at wrote: > I'm using the versions that are in the Ubuntu repositories...so 7.1 on > Ubuntu 8.04 and 7.2 on Ubuntu 8.10. The one that works the way I want > it to is version 7.1 on Ubuntu 8.04. So since you say you

Re: vim-latex tags not working

2009-07-13 Thread at
Thanks. Sorry for the intensely stupid question. I RTFM but evidently I read the wrong FM :). On Jul 13, 1:04 am, "John Beckett" wrote: > at wrote: > > When I compile a document with errors in vim-latex I get a > > quickfix window. Hitting Ctrl+] on one of the items

vim-latex tags not working

2009-07-12 Thread at
When I compile a document with errors in vim-latex I get a quickfix window. Hitting Ctrl+] on one of the items of the quickfix list should take me to the line of the error but instead I get E433: No tags file E426: tag not found: I looked at :help tags andI thought that the problem would

Re: basic command problems...

2009-07-01 Thread at
Got it...Thanks a lot to both! On Jul 1, 11:22 am, Charles Campbell wrote: > at wrote: > > Kind of a newbie question here, hope its obvious! > > > I'm trying to implement the following: > >  nmap d  80A*80|D > > > The idea is that it would write a line of

basic command problems...

2009-07-01 Thread at
Kind of a newbie question here, hope its obvious! I'm trying to implement the following: nmap d 80A*80|D The idea is that it would write a line of * symbols up to column 80 by first writing 80 *s, then doing to the 80th column and then deleting the rest of the line. The D at the end see

Re: shell commands from within gvim

2009-06-25 Thread at
24, 9:45 pm, bill lam wrote: > On Wed, 24 Jun 2009, at wrote: > > > So this relates to my latex-suite question a while back, which I > > solved, but is mysterious. > > > On my Ubuntu 8.10 desktop if I issue > >    :!evince sample.pdf > > It will open up samp

shell commands from within gvim

2009-06-24 Thread at
So this relates to my latex-suite question a while back, which I solved, but is mysterious. On my Ubuntu 8.10 desktop if I issue :!evince sample.pdf It will open up sample.pdf and leave me free to edit inside gvim. (My desired result.) I have an Ubuntu 9.04 laptop running the same exact confi