Re: Patch 8.0.1587

2018-03-13 Fir de Conversatie Elimar Riesebieter
* Bram Moolenaar [2018-03-13 15:42 +0100]: > > Christian wrote: > > > On Do, 08 Mär 2018, Bram Moolenaar wrote: > > > > > It is not. "\" becomes a real Esc character, while in > > > single quotes you get 6 characters. We need the Esc character for this > > > test. > > >

Add NGETTEXT keyword for translation

2018-03-13 Fir de Conversatie Sergey Alyoshin
Additional keyword argument is required for xgettext to extract strings from NGETTEXT(). -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You

Re: How about a release?

2018-03-13 Fir de Conversatie Christian Brabandt
On Mo, 12 Mär 2018, James McCoy wrote: > 12264088 (+vartabs) is larger than 12234272 (-vartabs). The more > interesting figures (if size is really a factor) would be after > stripping both binaries, since that's what most people are likely to > encounter. That would actually make sense and

Re: How about a release?

2018-03-13 Fir de Conversatie Matthew Winn
On 12/03/18 22:06, Nikolay Aleksandrovich Pavlov wrote: 2018-03-12 0:36 GMT+03:00 Matthew Winn : But editing tabular information is something that a great many people do. It's not just a matter of working with tab-separated data files. How often do you want to assemble

Re: How about a release?

2018-03-13 Fir de Conversatie Christian Brabandt
On Di, 13 Mär 2018, Nikolay Aleksandrovich Pavlov wrote: > Conveniently viewing tab-separated file is one thing, assembling is > entirely another. Who could you share such file except person using > (Neo)Vim with your patch? Spaces are safer and it is not impossible to > write a plugin which

Re: How about a release?

2018-03-13 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2018-03-13 9:09 GMT+03:00 Matthew Winn : > On 12/03/18 22:06, Nikolay Aleksandrovich Pavlov wrote: >> >> 2018-03-12 0:36 GMT+03:00 Matthew Winn : >>> >>> But editing tabular information is something that a great many people do. >>> It's not just a

Re: How about a release?

2018-03-13 Fir de Conversatie Nikolay Aleksandrovich Pavlov
2018-03-13 10:13 GMT+03:00 Christian Brabandt : > > On Di, 13 Mär 2018, Nikolay Aleksandrovich Pavlov wrote: > >> Conveniently viewing tab-separated file is one thing, assembling is >> entirely another. Who could you share such file except person using >> (Neo)Vim with your

Re: How about a release?

2018-03-13 Fir de Conversatie Christian Brabandt
On Di, 13 Mär 2018, Nikolay Aleksandrovich Pavlov wrote: > My point is that while you can sure view those files in a nice manner > *yourself*, but it would not do any good for those who you share files > with unless they have vartabs themselves. So if files need to be > assembled it is better to

Patch 8.0.1603

2018-03-13 Fir de Conversatie Bram Moolenaar
Patch 8.0.1603 Problem:Cannot build with +terminal but without +menu. Solution: Add #ifdef. (Damien) Files: src/terminal.c *** ../vim-8.0.1602/src/terminal.c 2018-03-11 19:30:40.128142740 +0100 --- src/terminal.c 2018-03-13 13:06:11.249902651 +0100 *** ***

Re: Crash in json.c

2018-03-13 Fir de Conversatie Bram Moolenaar
Damien43 wrote: > $ vim +"call json_decode('{{}:42}')" > > https://framagit.org/Damien43/patches/raw/master/vim/json.patch Thanks! The fix in terminal.c is a separate issue though. -- Often you're less important than your furniture. If you think about it, you can get fired but your

Re: How about a release?

2018-03-13 Fir de Conversatie Bram Moolenaar
Skywind wrote: > One thing important for terminal: open file directly in the terminal > > Presume the shell in the vim's terminal and vim itself are always under the > different working directory. It is quite in-productive to switch to > terminal-normal mode and use vim's command to find and

Re: How about a release?

2018-03-13 Fir de Conversatie Bram Moolenaar
Nikolay Pavlov wrote: > 2018-03-13 10:13 GMT+03:00 Christian Brabandt : > > > > On Di, 13 Mär 2018, Nikolay Aleksandrovich Pavlov wrote: > > > >> Conveniently viewing tab-separated file is one thing, assembling is > >> entirely another. Who could you share such file except

Terminal close behavior

2018-03-13 Fir de Conversatie Bram Moolenaar
Currently the :terminal command keeps the window open after the job exists. The idea is that you have a chance to see the job output, you might want to yank it. Closing the window automatically might mean you loose that text, there is no way to get it back. However, in practice I find that I

Re: How about a release?

2018-03-13 Fir de Conversatie Bram Moolenaar
Tony Mechelynck wrote: > On Tue, Mar 13, 2018 at 3:17 AM, James McCoy wrote: > > On Mon, Mar 12, 2018 at 11:21:55PM +0100, Christian Brabandt wrote: > [...] > >> Not sure, why the vartabs enabled Vim is actually smaller then the > >> unpatched Vim. That is certainly

Re: How about a release?

2018-03-13 Fir de Conversatie Christian Brabandt
On Di, 13 Mär 2018, Bram Moolenaar wrote: > I don't think code size matters much for a feature like this. > But if you want to compare sizes, you need to use a build where size is > relevant. A huge build with GUI is where users don't care about size. > The GUI adds so much that the Vim code

Re: How about a release?

2018-03-13 Fir de Conversatie Christian Brabandt
On Di, 13 Mär 2018, Bram Moolenaar wrote: > An alternative would be to support a custom escape sequence enclosing an > arbitrary Vim command. This is tricky, since it can be abused to have > Vim execute any command when catting a file to the terminal. > We could restrict it to opening a file, a

Re: Terminal close behavior

2018-03-13 Fir de Conversatie Jason Felice
I'd prefer the change, personally. On Tue, Mar 13, 2018 at 8:56 AM, Bram Moolenaar wrote: > > Currently the :terminal command keeps the window open after the job > exists. The idea is that you have a chance to see the job output, you > might want to yank it. Closing the

Patch 8.0.1602

2018-03-13 Fir de Conversatie Bram Moolenaar
Patch 8.0.1602 Problem:Crash in parsing JSON. Solution: Fail when using array or dict as dict key. (Damien) Files: src/json.c, src/testdir/test_json.vim *** ../vim-8.0.1601/src/json.c 2017-12-15 21:24:56.241651799 +0100 --- src/json.c 2018-03-13 13:06:11.249902651 +0100

Re: How about a release?

2018-03-13 Fir de Conversatie Matthew Winn
On 13/03/18 06:47, Nikolay Aleksandrovich Pavlov wrote: 2018-03-13 9:09 GMT+03:00 Matthew Winn : How many people will use it is irrelevant. The point I'm trying to make here is that all the opposition has been based around objections that have never been used to object

Re: Terminal close behavior

2018-03-13 Fir de Conversatie Kazunobu Kuriyama
2018-03-13 21:56 GMT+09:00 Bram Moolenaar : > > Currently the :terminal command keeps the window open after the job > exists. The idea is that you have a chance to see the job output, you > might want to yank it. Closing the window automatically might mean you > loose that

Re: Patch 8.0.1587

2018-03-13 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Do, 08 Mär 2018, Bram Moolenaar wrote: > > > It is not. "\" becomes a real Esc character, while in > > single quotes you get 6 characters. We need the Esc character for this > > test. > > I am seeing the same error, when running Vim in a session without access > to the

Re: Terminal close behavior

2018-03-13 Fir de Conversatie Christian Brabandt
On Di, 13 Mär 2018, Kazunobu Kuriyama wrote: > 2018-03-13 21:56 GMT+09:00 Bram Moolenaar : > > > Currently the :terminal command keeps the window open after the job > exists.  The idea is that you have a chance to see the job output, you > might want to yank it. 

Patch 8.0.1604

2018-03-13 Fir de Conversatie Bram Moolenaar
Patch 8.0.1604 Problem:Paste test may fail if $DISPLAY is not set. Solution: Add WorkingClipboard() and use it in the paste test. Files: src/testdir/shared.vim, src/testdir/test_paste.vim *** ../vim-8.0.1603/src/testdir/shared.vim 2018-03-09 21:33:29.248607375 +0100 ---

Re: test failure in test_terminal redux

2018-03-13 Fir de Conversatie Bram Moolenaar
> make test fails for me too -- in a different place so I started a new email: > > From test_terminal.vim: > Found errors in Test_terminal_response_to_control_sequence(): > function RunTheTest[38]..Test_terminal_response_to_control_sequence line > 20: Pattern '\\<\\d\\+R' does not match 'sh-4.3$

Re: Terminal close behavior

2018-03-13 Fir de Conversatie Bram Moolenaar
Christian wrote: > On Di, 13 Mär 2018, Kazunobu Kuriyama wrote: > > > 2018-03-13 21:56 GMT+09:00 Bram Moolenaar : > > > > > > Currently the :terminal command keeps the window open after the job > > exists.  The idea is that you have a chance to see the job output,

Patch 8.0.1605

2018-03-13 Fir de Conversatie Bram Moolenaar
Patch 8.0.1605 Problem:Terminal test is a bit flaky. Solution: Check for the shell prompt. Use more lambda functions. Files: src/testdir/test_terminal.vim *** ../vim-8.0.1604/src/testdir/test_terminal.vim 2018-03-11 16:55:30.008616433 +0100 --- src/testdir/test_terminal.vim

Re: How about a release?

2018-03-13 Fir de Conversatie Tony Mechelynck
On Tue, Mar 13, 2018 at 1:56 PM, Bram Moolenaar wrote: > > Tony Mechelynck wrote: > >> On Tue, Mar 13, 2018 at 3:17 AM, James McCoy wrote: >> > On Mon, Mar 12, 2018 at 11:21:55PM +0100, Christian Brabandt wrote: >> [...] >> >> Not sure, why the vartabs

Re: [vim/vim] fix mouse pointer for get_number (#2709)

2018-03-13 Fir de Conversatie Bram Moolenaar
Yasuhiro wrote: > Cursor shape is remaining with stop icon. When I use :tselect the mouse pointer is hidden. As soon as I move it it's an arrow. When do you see the other form? -- hundred-and-one symptoms of being an internet addict: 8. You spend half of the plane trip with your laptop on

Re: How about a release?

2018-03-13 Fir de Conversatie M Kelly
Hi, Where can I learn more about the debugger plugin ? thx, mark -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message