Re: [bug] netrw with netrw_liststyle = 3

2013-10-02 Fir de Conversatie Charles E Campbell
Bruno Sutic wrote: Hi, I "discovered" netrw liststyle=3 aka tree style listing a couple days ago. (I love it!) Ever since, I've had a weird issue where I would open a file and it would be completely blank. I'll look into it (and I was able to duplicate it -- thanks for the good directions

Re: [PATCH] Asynchronous functions (settimeout, setinterval, and cancelinterval)

2013-10-02 Fir de Conversatie kans
On Friday, September 27, 2013 8:04:25 AM UTC-7, Ben Fritz wrote: > On Thursday, September 26, 2013 4:53:55 PM UTC-5, kans wrote: > > > > As Bram pointed out ctrl-c doesn't work on windows. I'm not going to try > > to fix that. > > > > CTRL-C works on Windows as long as a user doesn't source th

[bug] netrw with netrw_liststyle = 3

2013-10-02 Fir de Conversatie Bruno Sutic
Hi, I "discovered" netrw liststyle=3 aka tree style listing a couple days ago. (I love it!) Ever since, I've had a weird issue where I would open a file and it would be completely blank. When I hit :e! content of the file appears as it should. I decided to investigate this a bit, and it turns ou

Re: Feature Request: ChangeDirectory Autocmd

2013-10-02 Fir de Conversatie Amadeus Demarzi
One example I can think of is Vim Fugitive, it can't properly setup its Git functionality without this type of event, I believe. Therefore it's stuck doing on on buffer loading autocmds. Other personal niceties would be, autoloading a session file when I :cd into particular directories. autoch

Re: Feature Request: ChangeDirectory Autocmd

2013-10-02 Fir de Conversatie David Fishburn
On 2013-10-02, Amadeus Demarzi wrote: > > This is a feature I would find highly useful, and could enable > > many plugins to operate more efficiently. > > Isn't this autochdir? :h autochdir -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the

Re: Feature Request: ChangeDirectory Autocmd

2013-10-02 Fir de Conversatie Gary Johnson
On 2013-10-02, Amadeus Demarzi wrote: > This is a feature I would find highly useful, and could enable > many plugins to operate more efficiently. > > Has this ever come up for discussion? Perhaps there's a reason it > hasn't been done already? > > I know with my workflow, I often first cd into a

Re: When searching for a single digit gn/gN visually selects too much

2013-10-02 Fir de Conversatie Bram Moolenaar
Christian Brabandt wrote: > On Mi, 02 Okt 2013, Ryan Carney wrote: > > > I think I may have found a bug, I have list the steps to reproduce it. > > > > 1. open a new buffer :tabe or :e test > > 2. put two single digits on different lines > > 3. search using the regex '\d' (without quotes) >

Patch 7.4.050

2013-10-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.050 Problem:"gn" selects too much for the pattern "\d" when there are two lines with a single digit. (Ryan Carney) Solution: Adjust the logic of is_one_char(). (Christian Brabandt) Files: src/search.c, src/testdir/test53.in, src/testdir/test53.ok *** ../vim-7.4.0

Feature Request: ChangeDirectory Autocmd

2013-10-02 Fir de Conversatie Amadeus Demarzi
This is a feature I would find highly useful, and could enable many plugins to operate more efficiently. Has this ever come up for discussion? Perhaps there's a reason it hasn't been done already? I know with my workflow, I often first cd into a directory, and then operate vim from there using

[BUG?] Statusline bg turns black on "sy on"

2013-10-02 Fir de Conversatie Florian Bruhin
Hi, I discovered something that might be a bug, using vim 7.4. After trying to simplify my vimrc first I was able to reproduce it with this .vimrc and no .vim folder: --- set nocompatible colorscheme desert set laststatus=2 highlight User1 ctermbg=Red ctermfg=Black set statusline=%1*test --- Wh

Re: Patch: formatoptions in ftplugins

2013-10-02 Fir de Conversatie glts
Bram, On Wed, Oct 2, 2013 at 12:52 PM, Bram Moolenaar wrote: > > David Barnett wrote: > >> +Nikolai +Bram +Tim (authors of the majority of these plugins) >> >> I'm confident we can get consensus to at least remove a few of those >> formatoptions modifications. You should also add "setlocal >> for

Patch 7.4.049

2013-10-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.049 Problem:In Ex mode, when line numbers are enabled the substitute prompt is wrong. Solution: Adjust for the line number size. (Benoit Pierre) Files: src/ex_cmds.c *** ../vim-7.4.048/src/ex_cmds.c2013-08-07 15:15:51.0 +0200 --- src/ex_cmds.c

Patch 7.4.048

2013-10-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.048 Problem:Recent clang version complains about -fno-strength-reduce. Solution: Add a configure check for the clang version. (Kazunobu Kuriyama) Files: src/configure.in, src/auto/configure *** ../vim-7.4.047/src/configure.in 2013-08-04 20:00:50.0 +0200 --- src/c

Re: 7.4a - Confirm dialog box larger than screen size

2013-10-02 Fir de Conversatie David Fishburn
On Mon, Sep 2, 2013 at 9:15 PM, David Fishburn wrote: > > Turns out this problem also affects Linux (gnome in this case). > > ... > Can anyone confirm the same (incorrect) behaviour on non-Windows platforms? Thanks, David -- -- You received this message from the "vim_dev" maillist. Do not top

Re: Patch: formatoptions in ftplugins

2013-10-02 Fir de Conversatie Gary Johnson
On 2013-10-02, Bram Moolenaar wrote: > David Barnett wrote: > > > +Nikolai +Bram +Tim (authors of the majority of these plugins) > > > > I'm confident we can get consensus to at least remove a few of those > > formatoptions modifications. You should also add "setlocal > > formatoptions-=3Dt" in p

Patch 7.4.047

2013-10-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.047 Problem:When using input() in a function invoked by a mapping it doesn't work. Solution: Temporarily reset ex_normal_busy. (Yasuhiro Matsumoto) Files: src/eval.c *** ../vim-7.4.046/src/eval.c 2013-09-29 21:11:00.0 +0200 --- src/eval.c 2013-10-02 16

Re: When searching for a single digit gn/gN visually selects too much

2013-10-02 Fir de Conversatie Christian Brabandt
Hi Ryan! On Mi, 02 Okt 2013, Ryan Carney wrote: > I think I may have found a bug, I have list the steps to reproduce it. > > 1. open a new buffer :tabe or :e test > 2. put two single digits on different lines > 3. search using the regex '\d' (without quotes) > 4. put your cursor before or on

Re: [PATCH] Use rpm Python library for parsing version and release info.

2013-10-02 Fir de Conversatie ZyX
> Well, I have covered all my code with > > if has('python') > endif > > so I hoped that it should be harmless for anybody without Python > support. Seriously, what could get wrong? I see except ImportError: pass . This definitely means that if `rpm` python package is no

Re: [patch] Undo messages may not be shown

2013-10-02 Fir de Conversatie Ken Takata
Hi, 2013/10/02 Wed 19:52:29 UTC+9 Bram Moolenaar wrote: > Ken Takata wrote: > > > Hi, > > > > Sometimes (maybe when scrolling occurs) undo messages like > > "2 fewer lines: before #79 7 seconds ago" are not shown. > > (Vim 7.4.041 on Windows, 7.3.429 on Linux) > > > > E.g. > > > > 1. $ gvim -

Patch 7.4.046

2013-10-02 Fir de Conversatie Bram Moolenaar
Patch 7.4.046 Problem:Can't use Tcl 8.6. Solution: Change how Tcl_FindExecutable is called. (Jan Nijtmans) Files: src/if_tcl.c *** ../vim-7.4.045/src/if_tcl.c 2013-08-02 19:31:15.0 +0200 --- src/if_tcl.c2013-10-02 13:44:48.0 +0200 *** *** 165,170 **

Re: Issue 167 in vim: Support for Tcl 8.6

2013-10-02 Fir de Conversatie vim
Updates: Status: Fixed Comment #1 on issue 167 by brammool...@gmail.com: Support for Tcl 8.6 http://code.google.com/p/vim/issues/detail?id=167 Included with patch 7.4.046 -- You received this message because this project is configured to send all issue notifications to this address.

Re: Patch: formatoptions in ftplugins

2013-10-02 Fir de Conversatie Bram Moolenaar
David Barnett wrote: > +Nikolai +Bram +Tim (authors of the majority of these plugins) > > I'm confident we can get consensus to at least remove a few of those > formatoptions modifications. You should also add "setlocal > formatoptions-=3Dt" in pretty much every case (unless your syntax is fine

Re: [patch] Undo messages may not be shown

2013-10-02 Fir de Conversatie Bram Moolenaar
Ken Takata wrote: > Hi, > > Sometimes (maybe when scrolling occurs) undo messages like > "2 fewer lines: before #79 7 seconds ago" are not shown. > (Vim 7.4.041 on Windows, 7.3.429 on Linux) > > E.g. > > 1. $ gvim -N -u NONE -U NONE > 2. Input a line: `ifoo`. > 3. Repeat it more than 25 times