Re: Vim 7.4 released!

2013-08-14 Fir de Conversatie afluby
That's cool W dniu sobota, 10 sierpnia 2013 15:44:43 UTC+2 użytkownik Bram Moolenaar napisał: Hello Vim users, Announcing: Vim (Vi IMproved) version 7.4 A small number of problems have been fixed since 7.4b BETA. It's now tested sufficiently, time for a release!

Re: [PATCH] make adding new letters to arabic.c easier

2013-08-14 Fir de Conversatie Ameretat Reith
On Wed, 14 Aug 2013 01:06:30 +0200 Tony Mechelynck antoine.mechely...@gmail.com wrote: Adding a new keymap file to Vim requires no knowledge of the C language; Vim mustn't even be recompiled, it's just a runtime script. It is not even hard to make one once you get the hang of it, see

Patch 7.4.001

2013-08-14 Fir de Conversatie Bram Moolenaar
Patch 7.4.001 Problem:Character classes such as [a-z] to not react to 'ignorecase'. Breaks man page highlighting. (Mario Grgic) Solution: Add separate items for classes that react to 'ignorecase'. Clean up logic handling character classes. Add more tests. Files:

Re: Bug: writing encrypted file, while asked for password, destroys contents

2013-08-14 Fir de Conversatie Michael Henry
On 08/13/2013 05:47 AM, Ingo Karkat wrote: On 13-Aug-2013 11:15 +0200, Bram Moolenaar wrote: Doing a :write on FocusLost is a bad idea. This is a common idiom to auto-save, e.g. see http://vim.wikia.com/wiki/Auto_save_files_when_focus_is_lost Perhaps :update would be acceptable, but

Patch 7.4.002

2013-08-14 Fir de Conversatie Bram Moolenaar
Patch 7.4b.002 Problem:Pattern with two alternative look-behind matches does not match. (Amadeus Demarzi) Solution: When comparing PIMs also compare their state ID to see if they are different. Files: src/regexp_nfa.c, src/testdir/test64.in,

Re: Bug: writing encrypted file, while asked for password, destroys contents

2013-08-14 Fir de Conversatie Einārs Lielmanis
Reading the tip on the wiki, it's recommending :wa, not :write, which is similar to Bram's suggested :update in that it writes only modified files. Yes, I reasonably, yet incorrectly assumed that :w is doing the same that :wa, only on the active buffer. I updated the focuslost wiki page to

Patch 7.4.003

2013-08-14 Fir de Conversatie Bram Moolenaar
Patch 7.4.003 Problem:Memory access error in Ruby syntax highlighting. (Christopher Chow) Solution: Refresh stale pointer. (James McCoy) Files: src/regexp_nfa.c *** ../vim-7.4.002/src/regexp_nfa.c 2013-08-14 13:31:03.0 +0200 --- src/regexp_nfa.c2013-08-14

Re: Segfault on 7.4 caused by syntax :on with Ruby file

2013-08-14 Fir de Conversatie Bram Moolenaar
James McCoy wrote: On Tue, Aug 13, 2013 at 09:03:36PM +0200, Dominique Pellé wrote: I could narrow it down further. I can reproduce it with: # Create a file (6 space and a x, bug does not happen with less than 6 spaces): $ echo x foo $ valgrind --log-file=valgrind.log vim

Re: new syntax file(systemverilog)

2013-08-14 Fir de Conversatie Bram Moolenaar
Kocha wrote: Hi Bram, I am always using a language called SystemVerilog at work. However, I very regret that there is nothing to Syntax of the standard of Vim. Would you add to the standard of Vim, if it can do? This is my first post and my first time creating vim syntax files, so

Patch 7.4.004

2013-08-14 Fir de Conversatie Bram Moolenaar
Patch 7.4.004 Problem:When closing a window fails :bwipe may hang. Solution: Let win_close() return FAIL and break out of the loop. Files: src/window.c, src/proto/window.pro, src/buffer.c *** ../vim-7.4.003/src/window.c 2013-07-24 17:38:29.0 +0200 --- src/window.c

Patch 7.4.005

2013-08-14 Fir de Conversatie Bram Moolenaar
Patch 7.4.005 Problem:Using vaB while 'virtualedit' is set selects the wrong area. (Dimitar Dimitrov) Solution: Reset coladd when finding a match. Files: src/search.c *** ../vim-7.4.004/src/search.c 2013-07-17 19:20:47.0 +0200 --- src/search.c2013-08-14

Re: --remote-silent and startinsert not playing well...

2013-08-14 Fir de Conversatie Ben Fritz
On Wednesday, August 14, 2013 10:49:17 AM UTC-5, John Szakmeister wrote: On Mon, Aug 12, 2013 at 9:49 PM, John Szakmeister j...@szakmeister.net wrote: All, I've been working on some vimscript to help expand an UltiSnips template for a new file and ran across an interesting bug.

Re: --remote-silent and startinsert not playing well...

2013-08-14 Fir de Conversatie John Szakmeister
On Wed, Aug 14, 2013 at 12:02 PM, Ben Fritz fritzophre...@gmail.com wrote: [snip] Is there an existing server GVIM0 running for your remote-silent version? I've tried both ways just to see if it works one way and not the other. Unfortunately, it doesn't matter whether the server is started or

system(tmux load-buffer -, buf) hangs

2013-08-14 Fir de Conversatie Péter Kasza
Dear vim_dev list! I've been using the tslime plugin for some time now, but after an update it somehow doesn't seem to work anymore. The call to system(tmux load-buffer -, buf) hangs forever. I can make it work by changing the line to system(cat | tmux load-buffer -,buf). This is

Re: system(tmux load-buffer -, buf) hangs

2013-08-14 Fir de Conversatie Christian Brabandt
Hi Péter! On Mi, 14 Aug 2013, Péter Kasza wrote: Dear vim_dev list! I've been using the tslime plugin for some time now, but after an update it somehow doesn't seem to work anymore. The call to system(tmux load-buffer -, buf) hangs forever. I can make it work by changing the

Re: Bug: writing encrypted file, while asked for password, destroys contents

2013-08-14 Fir de Conversatie Christian Brabandt
On Di, 13 Aug 2013, Christian Brabandt wrote: On Tue, August 13, 2013 01:00, Einar Lielmanis wrote: Encrypted file contents are destroyed, if something (e.g autocmd) triggers write event, while user is being asked for password. To repro: 1. have an encrypted.txt ready (:X) 2. gvim,