... It is clearly stated in documentation that printf() operates with bytes. -- You received this message from the "vim_dev" maillist. Do not top-post! Type...
67062
lith
minilith@...
Nov 11, 2012 11:40 am
... My question rather was am I missing something since I personally find this behaviour rather useless in the context of a text editor. A formatted string...
67063
Christian Brabandt
cblists@...
Nov 11, 2012 3:21 pm
Hi lith! ... I guess, we could use the 'S' type for printf() to specify length is given in char (see patch). regards, Christian -- -- You received this message...
67064
Alexey Radkov
alexey.radkov@...
Nov 11, 2012 4:43 pm
Hi. Here are some fixes for errors in vim syntax highlight for multi-lined commands found when looking through my .vimrc and other vim sources. I used to keep...
67065
ZyX
zyx.vim@...
Nov 11, 2012 5:07 pm
... I don't say this is very useful, I am as well constantly finding myself writing code that uses strdisplaywidth for this job (with an emulation function for...
67066
ZyX
zyx.vim@...
Nov 11, 2012 5:19 pm
... I actually never need characters in this case. What is *really* needed is called “display cell”. I see that your patch uses right this, but...
67067
Christian Brabandt
cblists@...
Nov 11, 2012 8:40 pm
Hi ZyX! ... Call it display cell, I don't care. I think the user would simply call it characters. ... I don't mind. But in the failing case, it is right...
67068
Alexey Radkov
alexey.radkov@...
Nov 12, 2012 6:50 am
... From: Alexey Radkov <alexey.radkov@...> Date: 2012/11/11 Subject: some vim syntax fixes for multi-lined commands To: vim-dev@... (missed...
67069
ZyX
zyx.vim@...
Nov 12, 2012 7:18 pm
... No if he is working with fullwidth ones. mb_string2cells outputs displays cells, and documentation uses both terms for different things. Characters here...
67070
vim@...
Nov 12, 2012 7:30 pm
Status: New Owner: ---- Labels: Type-Defect Priority-Medium New issue 92 by randy.th...@...: Cindent not behaving as expected after substitute. ...
67071
Alexey Radkov
alexey.radkov@...
Nov 13, 2012 9:38 am
Hi. I found another issue with vim sources syntax highlights. In the following code: fun! VimwikiLinkHandler(link) let link = a:link if link =~ "vlocal:" ||...
67072
Andy Wokula
anwoku@...
Nov 13, 2012 9:02 pm
... Still doesn't look right (gVim 7.3.712). When typing fn the cursor changes its shape. Typing fnl jumps to begin of buffer. Also the r command is...
67073
Charles Campbell
Charles.E.Campbell@...
Nov 13, 2012 9:03 pm
... Hello! I will accept the patches (except for the duplicate patching in the last one, which was rejected). Please try the version in ...
67074
Andy Wokula
anwoku@...
Nov 13, 2012 9:09 pm
... One more small inconsistency: When there is no previous search string, both n/N and gn/gN give an error message "E35: No previous regular expression"...
67075
Christian Brabandt
cblists@...
Nov 14, 2012 6:24 am
... Hm, I don't see this behaviour with vim 7.3.712 on Unix but only with the latest Cream version which is 7.3.709 on Windows (don't have a built machine for...
67076
Christian Brabandt
cblists@...
Nov 14, 2012 6:28 am
... I really hope, this is not going to be "fixed". The behaviour of n/N depending on the inital search direction is one of my greatest annoyances of Vim. ... ...
67077
Tony Mechelynck
antoine.mechelynck@...
Nov 14, 2012 6:59 am
... Are you sure patch 7.3.710 is included? (Check near the top of the output of :version - it is possible to include one patch without the preceding one). ......
67078
Alexey Radkov
alexey.radkov@...
Nov 14, 2012 7:16 am
Hi Charles. Thank you! 2012/11/14 Charles Campbell <Charles.E.Campbell@...> ... Yes, the 2nd patch included the first, therefore same part in 2nd patch...
67079
Andy Wokula
anwoku@...
Nov 14, 2012 8:51 am
... Ok, my mistake then (using Mercurial). Sorry for the noise. -- Andy -- You received this message from the "vim_dev" maillist. Do not top-post! Type your...
67080
Mostafa Shahverdy
shahverdy.m@...
Nov 14, 2012 2:21 pm
How can I find a good overall structural documentation of vim codebase? -- Regards, Mostafa Shahverdy <http://shahverdy.tk> -- You received this message from...
67081
Ben Fritz
fritzophrenic@...
Nov 14, 2012 2:22 pm
... Regardless, the inconsistency is confusing. At least the documentation should reflect this difference. -- You received this message from the "vim_dev"...
67082
Bram Moolenaar
Bram@...
Nov 14, 2012 5:02 pm
... Thanks. I think it's good that without the +multi_byte feature 'S' works just like 's', that's easier for script writers. I also fixed a signed/unsigned...
67083
Bram Moolenaar
Bram@...
Nov 14, 2012 5:13 pm
Patch 7.3.713 Problem: printf() can only align to bytes, not characters. Solution: Add the "S" item. (Christian Brabandt) Files: runtime/doc/eval.txt,...
67084
Bram Moolenaar
Bram@...
Nov 14, 2012 7:53 pm
Patch 7.3.714 Problem: Inconsistency: :set can be used in the sandbox, but :setlocal and ... Solution: Fix the flags for :setlocal and :setglobal....
67085
Charles E Campbell Jr
drchip@...
Nov 14, 2012 7:56 pm
... You're welcome! ... (snipped) ... At the top of the syntax files the Maintainers (usually) include their email address. Mine is there, although one has to...
67086
Jason A. Spiro
jasonspiro4@...
Nov 14, 2012 9:36 pm
... I suspect that more Crawl players than Crawl level designers view Crawl level files. Can Vim automatically send anonymous usage statistics to the Vim team?...
67087
Bram Moolenaar
Bram@...
Nov 14, 2012 9:38 pm
Patch 7.3.715 Problem: Crash when calling setloclist() in BufUnload autocmd. (Marcin Szamotulski) Solution: Set w_llist to NULL when it was freed. Also...
67088
Jakson Alves de Aquino
jalvesaq@...
Nov 15, 2012 3:12 am
Hello! I'm replying to my own message again, but this time to inform people reading this thread how I have solved the problem: 1) I no longer create a socket...
67089
Nazri Ramliy
ayiehere@...
Nov 15, 2012 3:52 am
... A good place to start is the data structures. Read src/structs.h. nazri -- You received this message from the "vim_dev" maillist. Do not top-post! Type...
67090
Marc Weber
marco-oweber@...
Nov 15, 2012 4:16 am
There is src/README.txt -- 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...