search for: tabstop

Displaying 20 results from an estimated 40 matches for "tabstop".

Did you mean: tabstops
2007 Oct 22
0
12 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c libswfdec/swfdec_text_field_movie.h test/trace
..." COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> +0/a: align=left blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= +0: multiline: true condenseWhite: false +a +<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> +0/a: align=left blockInd...
2007 Oct 25
0
18 commits - libswfdec/swfdec_player_internal.h libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_format.c libswfdec/swfdec_text_format.h libswfdec/swfdec_xml.c libswfdec/swfdec_xml_node.c libswfdec/swfdec_xml_node.h test/trace
..."bullet"/*, + "color", + "display", + "font", + "indent", + "italic", + "kerning", + "leading", + "leftMargin", + "letterSpacing", + "rightMargin", + "size", + "tabStops", + "target", + "underline", + "url"*/ +]; + +function format_to_string (fmt) { + str = ""; + for (var i = 0; i < properties.length; i++) { + str += " " + properties[i] + "=" + fmt[properties[i]]; + } + return str; +} +...
2007 Oct 22
0
5 commits - libswfdec/swfdec_html_parser.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c test/trace
...ext-field-html-input-6.swf.trace +++ b/test/trace/text-field-html-input-6.swf.trace @@ -118,3 +118,31 @@ ab c 1/b: align=right blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= 2/ : align=right blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= 3/c: align=left blockIndent=0 bold=fal...
2013 Jan 14
1
tabstop in graphics
Hi, I'm curious about Tab stops in graphics: plot(1) text(1.2, 1.2, "Char\nMoreChar") works fine, but text(1.2, 0.8, "Char\tMoreChar") doesn't. Exporting with pdf tells me that the sign width is unknown. I'm not into informatics, so I don't know how a tabstop actually works. Is this at all possible in graphical commands as it is in write.table and the like? I'm e.g. writing a legend with two colums. I solve this with adding " " via paste to each element of the first column in one legend command, and then adding a second legend mo...
2007 Oct 29
0
20 commits - libswfdec/Makefile.am libswfdec/swfdec_as_interpret.c libswfdec/swfdec_html_parser.c libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field.h
..." COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P> 0/a: align=left blockIndent=0 bold=false bullet=false color=0 display=block font=Times New Roman indent=0 italic=false kerning= leading=0 leftMargin=0 letterSpacing= rightMargin=0 size=12 tabStops= target= underline=false url= +8: multiline: false condenseWhite: false +a b cd e +<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="12" COLOR="#000000" LETTERSPACING="0" KERNING="0">a</FONT></P><LI><FONT...
2019 Jan 27
2
How does LLVM know where to resolve declared only functions?
...higher priorities over system functions as demonstrated by the following example. Is there any way to always use system functions for certain function calls (but not always default to system functions) when there are local functions with the same name? ==> main.c <== /* vim: set noexpandtab tabstop=2: */ #include <stdio.h> int main() { puts("Hello World!"); return 0; } ==> myputs.c <== /* vim: set noexpandtab tabstop=2: */ #include <stdio.h> int myputs(char *s) { return printf("myputs:%s\n", s); } $ ./main1.sh clang -Wall -pedantic -S -emi...
2009 Feb 26
3
elastic tabstops, proportional fonts, and more
nick said: > http://nickgravgaard.com/elastictabstops/ exactly. thanks for writing it up, nick. the only thing i'd add is the notion that tables should be copyfit to the viewport. if the viewport gives you plenty of room, give the columns some breathing space. if not, tighten them as much as needed. *** > http://readown.googlecode.co...
2012 Dec 18
2
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com> wrote: > But its pretty easy to change the tabstop within the editor to make it > readable. > True, in this case... The output is not trying to be intelligent in the general case, just spitting out tabs. I agree that to replace this, however, it would be best to look at some smart column-padded formatting than use a constant tab -> N spac...
2019 Jan 26
2
How does LLVM know where to resolve declared only functions?
Hi In the generated .ll file, it may have something like this. How does LLVM know where to look for the definition of printf? Is it documented somewhere? Thanks. declare i32 @printf(i8*, ...) #1 -- Regards, Peng
2019 Jan 18
2
Is it possible to generate the IR representation with the original macro information?
...ere a way to preserve the macro information (print() in this case) for debugging purposes? $ clang -std=gnu99 -g3 -flto -Wall -pedantic -c -o main.o main.c $ clang main.o -flto -fuse-ld=gold '-Wl,-plugin-opt=save-temps' -o main.exe $ llvm-dis main.exe.0.0.preopt.bc /* vim: set noexpandtab tabstop=2: */ #include <stdio.h> #define print() puts("Hello World!"); int main() { print(); return 0; } -- Regards, Peng
2006 Feb 13
2
[PATCH] Allow generic autocompleter (Ajax.Watcher)
Hey. Below is a patch to allow generic Ajax.Autocompleters. Basically it''s for people who wanna be able to watch an input for changes, but don''t want it to pop up an autocompleter box below. Useful for live previews, that kind of thing. Someone''s gonna have to fix the tabstops. I couldn''t be arse to work out how to make vim do the softtabs properly. Spaces for indentation is stupid anyway. -Rob --- js/controls.js.old 2006-02-13 16:48:19.000000000 +0000 +++ js/controls.js 2006-02-13 14:48:28.000000000 +0000 @@ -336,6 +336,45 @@ }); +Ajax.Watcher = Cla...
2012 Dec 18
0
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
But its pretty easy to change the tabstop within the editor to make it readable. On Tue, Dec 18, 2012 at 1:01 PM, Eli Bendersky <eliben at google.com> wrote: > On Tue, Dec 18, 2012 at 11:36 AM, Caldarale, Charles R > <Chuck.Caldarale at unisys.com> wrote: > >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmde...
2012 Dec 18
0
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 1:13 PM, Eli Bendersky <eliben at google.com> wrote: > On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com> > wrote: > > But its pretty easy to change the tabstop within the editor to make it > > readable. > > > > True, in this case... The output is not trying to be intelligent in > the general case, just spitting out tabs. I agree that to replace > this, however, it would be best to look at some smart column-padded > formatting th...
2009 Feb 28
0
http://nickgravgaard.com/elastictabstops/
wow. i admired nick's _write-up_ of "elastic tabstops" when i read it... but i skipped his _example_, since java is disabled in my browser. during a re-read, i turned on java, temporarily, to see his example. and i'm _very_ impressed. in real time, on an interactive web-page, nick makes elastic tabstops work, and he makes them work _wel...
2012 Dec 18
2
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 11:36 AM, Caldarale, Charles R <Chuck.Caldarale at unisys.com> wrote: >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] >> On Behalf Of Eli Bendersky >> Subject: [LLVMdev] Getting rid of tabs in LLVM's assembly output? > >> Problem: I then get tabs in my tests, which are discouraged by LLVM's >>
2008 Mar 01
1
discount <markdown in C>
...is moving slowly enough so that it actually counts as stable. It includes a standalone markdown interpreter, a library, and a couple of sample programs that I use for generating webpages. There are some whoppingly nonstandard extensions: 1. you can configure the interpreter with 8-character tabstops. 2. definition lists, using =item= text =item= text 3. a small stack of smartypantish character substitutions 4. pseudo-protocol extensions - [foo](class:bar) -- wrap foo in <span class=bar> - [foo](id:bar) -- wrap foo in <a id="bar">...
2011 Jul 08
1
Fwd: [MMD] MMD-Edit is progressing nicely
...y > > MMD-Edit is progressing nicely > > 07/06/2011 22:31:22 > I am continuing work on my text editor for the Mac, MMD-Edit. It?s based on work described in another post, but briefly it performs syntax highlighting of MultiMarkdown syntax. > > Additionally, it now calculates tabstops to make the metadata and tables look better. To take advantage of this, you need a tab between the metadata key and the value, and a leading tab at the beginning of each line for any values that span multiple lines. > > As for tables, you can insert a space before the ?|? cell divider. >...
2016 Oct 18
2
Why stdin is required to be overwritten in SSH?
Hi SSH, I have put the ssh command in `script.sh`, with the code: ~~~ #!/usr/bin/env bash ssh -q server date ~~~ And I have one `main.sh` to call `script.sh` as below. ~~~ #!/usr/bin/env bash # vim: set noexpandtab tabstop=2: while read -r run do ./script.sh done < <(seq 10) ~~~ The `script.sh` can be called only once, say ~~~ $ ./main.sh Tue Oct 18 12:26:05 CDT 2016 ~~~ But 10 runs are expected. If I modify the stdin when calling, like `main1.sh` as below. ~~~ #!/usr/bin/env bash # vim: set noexpandtab t...
2012 Dec 18
3
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
...2012, at 2:07 PM, Chandler Carruth <chandlerc at google.com> wrote: > On Tue, Dec 18, 2012 at 1:13 PM, Eli Bendersky <eliben at google.com> wrote: > On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com> wrote: > > But its pretty easy to change the tabstop within the editor to make it > > readable. > > > > True, in this case... The output is not trying to be intelligent in > the general case, just spitting out tabs. I agree that to replace > this, however, it would be best to look at some smart column-padded > formatting t...
2014 Jan 03
1
Tab formatting in dummy.coef.R
...#39;ll fix it if you let me. There are some TABs where R style calls for 4 spaces. For example R-3.0.2/src/library/stats/R/dummy.coef.R. I never noticed this until today, when I was stranded on a deserted island with only the R source code and a Swiss Army knife (vi). Now I realize my ~.vimrc has tabstop set at 2, and it makes tab indentations in R source "go backwards". if you are strictly following R Internals 9 "R Coding Standards", the TABs should be replaced with spaces, I shouldn't have to reconfigure the editor. Here's the way it looks in my vi dummy.coef.aovli...