Bram, this patch adds the possibility to query for the existence of sign ids using exists(). Current idea is to use exists('#number39;) to check for the numeric...
67885
James McCoy
jamessan@...
Jan 26, 2013 3:31 pm
... 1500G would be how I would recommend doing that, but I've seen other people try :# before. I'll leave it up to Bram on whether that should work or not. ...
67886
ZyX
zyx.vim@...
Jan 26, 2013 3:34 pm
... I don’t like the overloading: exists('#…') is already ambigious*, don’t make it more ambigious: it *can* be an autocmd group. I would rather suggest...
67887
Ingo Karkat
swdev@...
Jan 26, 2013 3:45 pm
... Yes, this is complex enough already. The sign stuff is lacking good Vimscript support in general (one needs to resort to capture and parse :sign output...
67888
Ken Takata
kentkt@...
Jan 26, 2013 4:54 pm
Hi, ... I have updated the patches. There were two problems: 1. (simple version only) Couldn't compile on Linux with this patch. 2. os_unix.c didn't include...
67889
ZyX
zyx.vim@...
Jan 26, 2013 9:13 pm
The following patch adds support for guifg/guibg properties of highlight groups in ISO-8613-3 (at least http://invisible-island.net/xterm/ctlseqs/ctlseqs.html...
67890
Christian Brabandt
cblists@...
Jan 26, 2013 9:35 pm
Hi Ingo! ... ok. ... What would be needed? The following patch adds: - exists('|nr') returns true, if sign id nr exists - exists('||name') returns true, if...
67891
Christian Brabandt
cblists@...
Jan 26, 2013 9:41 pm
Hi James! ... indeed 1500G should have worked. I just haven't thought about it, since I usually use the :# ex command. But its fair enough. I just found it...
67892
ZyX
zyx.vim@...
Jan 26, 2013 10:07 pm
Small fix (last commit made non-gui builds fail) diff -r 274c841f033a -r acabf15c4408 runtime/doc/options.txt ... +++ b/runtime/doc/options.txt Sun Jan 27...
67893
Ingo Karkat
swdev@...
Jan 26, 2013 10:25 pm
... Wow, terrific. Though it's hard to make the connection between the "|" sigil and signs, it is consistent and short. This addresses the mentioned question;...
67894
Ingo Karkat
swdev@...
Jan 26, 2013 10:31 pm
... I find the new proposed behavior somewhat unexpected (though I rarely use :#); you had to press <C-U> to get rid of the '<,39;>, and that signals to me that ...
67895
Christian Brabandt
cblists@...
Jan 26, 2013 10:31 pm
Hi Ingo! ... What else can you do, when "Dschungelcamp"ı is on TV? ;) ıhttp://en.wikipedia.org/wiki/Ich_bin_ein_Star_%E2%80%93_Holt_mich_hier_raus! regards, ...
67896
Christian Brabandt
cblists@...
Jan 26, 2013 10:36 pm
Hi Ingo! ... The new behaviour would only work, with '<,39;> in front of the line number. If you press <C-U> it wouldn't work and would work as before. regards, ...
67897
ZyX
zyx.vim@...
Jan 27, 2013 12:50 am
Another small non-gui build fix: sg_gui_[fb]g was not initialized diff -r 274c841f033a -r dd91804ae7ec runtime/doc/options.txt ... +++...
Hi, I checked on 7.3.785 with the following steps: 1. $ vim -u NONE -N ... At this moment, 'ts' is 8 because of the modelines in os_win32.c. 2. Edit os_win32.c...
67900
John Little
John.B.Little@...
Jan 27, 2013 4:22 am
... (Assuming you don't mean the ancient non-visual mode command :#, a synonym for :number.) See :help :[range], you seem to imply by "but I've seen other...
67901
James McCoy
jamessan@...
Jan 27, 2013 4:44 am
... Yes, I meant :[range]. I was being consistent with the synatx in the subject of the email, although the body of the OP used :<nr>. ... Not that it isn't a...
67902
Ingo Karkat
swdev@...
Jan 27, 2013 9:37 am
... Ah, okay, that mitigates my concerns. It's a quite strange syntax, and I probably wouldn't have been able to deduce the behavior upon seeing :'<,39;>1500 ...
67903
John Little
John.B.Little@...
Jan 27, 2013 9:53 am
... I kind of see your point now, but while you're in that cmdline mode, the visual selection is still displayed; it is surprising that on completion of the...
67904
Christian Brabandt
cblists@...
Jan 27, 2013 1:57 pm
Hi, Here is an update. ... - getsign('lnum') returns a list of all placed sign ids in line lnum in the current buffer -getsign() returns a list of all placed...
67905
Bram Moolenaar
Bram@...
Jan 27, 2013 2:22 pm
... Thanks, I'll make a note in the todo list. It appears you accidentally included the patch twice. -- WOMAN: King of the who? ARTHUR: The Britons. WOMAN:...
67906
Bram Moolenaar
Bram@...
Jan 27, 2013 2:22 pm
... Thanks. I'll verify this is the best solution. -- Witches prefer brooms: vacuum-cleaners need extension cords! /// Bram Moolenaar -- Bram@... --...
67907
Bram Moolenaar
Bram@...
Jan 27, 2013 2:22 pm
... Is this superceded by the other patch for sign support? -- The question is: What do you do with your life? The wrong answer is: Become the richest guy in...
67908
Bram Moolenaar
Bram@...
Jan 27, 2013 2:22 pm
... Do we really need this? It adds an exception. Next would be jumping to a mark with :,'m and probably other Ex commands that only move the cursor. -- ...
67909
Christian Brabandt
cblists@...
Jan 27, 2013 2:28 pm
Hi Bram! ... Yes regards, Christian -- Es gibt Frauen, die Darwin falsch verstanden haben: Sie machen aus jedem Mann einen Affen. -- Carola Höhn -- -- You...
67910
ZyX
zyx.vim@...
Jan 27, 2013 2:56 pm
... Where? I have posted three patches here (first message and two fixed patches). Each has unified diff in message body and context diff in attachment. In any...
67911
Bram Moolenaar
Bram@...
Jan 27, 2013 3:19 pm
... Thanks. I would appreciate it if a few people tried out this patch with other compilers. -- There are 2 kinds of people in my world: those who know Unix,...
67912
Bram Moolenaar
Bram@...
Jan 27, 2013 5:30 pm
... I suggest you do not send a diff in the body. Just a unified diff in the attachment will do. Also, you do not really need to include the diff for...
67913
ZyX
zyx.vim@...
Jan 28, 2013 4:01 am
... “make autoconf” does not support specfying exact version, and due to the location of configure script autoconf-wrapper fails to guess the correct...