Re: MATLAB indent script

2018-11-21 Fir de Conversatie Axel Forsman
How does this look? On Tuesday, November 20, 2018 at 2:24:58 AM UTC+1, Bram Moolenaar wrote: > Does it help to change the command in indent/Makefile to: > > $(VIM) --clean --not-a-term -u testdir/runtest.vim > > That is, add "--clean". My mistake, I had a different tabstop setting so

Re: [vim/vim] vim can't recognize tmux-256color (#3630)

2018-11-21 Fir de Conversatie Gary Johnson
On 2018-11-21, Vedant Roy wrote: > I have the following .tmux.conf: > > # remap prefix from 'C-b' to 'C-a' > unbind C-b > set-option -g prefix C-a > bind-key C-a send-prefix > > # split panes using | and \ > > bind \ split-window -h > bind - split-window -v > unbind '"' > unbind % > > # switch

Re: About using vartabstop

2018-11-21 Fir de Conversatie Christian Brabandt
On Do, 15 Nov 2018, Christian Brabandt wrote: > Ah, I have seen that error before and thought I fixed. That usually > happened when the buffer was not loaded. I'll have a closer look later. > I suppose that happen when running test86? Here is an updated patch, that fixes the crash, and

Re: RFC: VimL functions for managing signs

2018-11-21 Fir de Conversatie Marc Weber
If you are working on it that's what I've been using: https://github.com/MarcWeber/vim-addon-signs The main problem is that you have to set numbers. If two plugins set signs there might be collisions by accident. The second problem I had: If you have a breakpoint at line 5 you never want it to

Re: RFC: VimL functions for managing signs

2018-11-21 Fir de Conversatie Yegappan Lakshmanan
Hi Marc, On Wed, Nov 21, 2018 at 3:38 AM Marc Weber wrote: > > If you are working on it that's what I've been using: > https://github.com/MarcWeber/vim-addon-signs > I looked at the above Vim plugin. It looks like this plugin provides a function for grouping signs by name and updating them. The

Patch 8.1.0541

2018-11-21 Fir de Conversatie Bram Moolenaar
Patch 8.1.0541 Problem:Help message in dosinst.c is outdated. Solution: Update the comment. (Ken Takata, closes #3626) Files: src/dosinst.c *** ../vim-8.1.0540/src/dosinst.c 2018-11-16 19:39:47.346937404 +0100 --- src/dosinst.c 2018-11-21 13:54:33.089924563 +0100

Re: About using vartabstop

2018-11-21 Fir de Conversatie Christian Brabandt
On Do, 22 Nov 2018, Bram Moolenaar wrote: > > Christian wrote: > > > On Do, 15 Nov 2018, Christian Brabandt wrote: > > > > > Ah, I have seen that error before and thought I fixed. That usually > > > happened when the buffer was not loaded. I'll have a closer look later. > > > I suppose that

Re: [vim/vim] gvim spamming console from which it was started (#3628)

2018-11-21 Fir de Conversatie Gary Johnson
On 2018-11-21, F. Eugene Aumson wrote: > Thanks again Tony. > > I do use the equivalent of alt+f2 (win/meta+r on my system). But it's still > annoying. > > Having to gather the target filename in my terminal is probably the biggest > hoop to jump through, bigger than how gvim is launched. > >

Re: About using vartabstop

2018-11-21 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Do, 15 Nov 2018, Christian Brabandt wrote: > > > Ah, I have seen that error before and thought I fixed. That usually > > happened when the buffer was not loaded. I'll have a closer look later. > > I suppose that happen when running test86? > > Here is an updated patch,