Re: [fossil-users] Tab stop width

2014-10-03 Thread Martijn Coppoolse
Stephan Beal schreef op 1-10-2014 19:48: More info, for those interested: http://www.w3schools.com/cssref/css3_pr_tab-size.asp apparently MSIE doesn't support it, but that table might simply be out of date. http://caniuse.com/#feat=css3-tabsize (CanIUse.com is usually better up to date than

Re: [fossil-users] Tab stop width

2014-10-01 Thread Zoltán Kócsi
HTML does not (AFAIK) distinguish between tabs and other whitespace. It will (by default) collapse all such characters into a single one or (with the right css) display them as-is, but css provides no way to say treat tabs as N spaces (or no way i have wver seen). My point being - in the web

Re: [fossil-users] Tab stop width

2014-10-01 Thread Stephan Beal
On Wed, Oct 1, 2014 at 10:10 AM, Zoltán Kócsi zol...@bendor.com.au wrote: pre { -o-tab-width: 4; -moz-tab-width: 4; tab-width: 4; } Oh - didn't know about that. Of course, I really don't know how Fossil is organised internally, so it's very easy for me to say 'just add a hook

[fossil-users] Tab stop width

2014-09-30 Thread Zoltán Kócsi
When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Thanks, Zoltan ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

Re: [fossil-users] Tab stop width

2014-09-30 Thread Richard Hipp
On Tue, Sep 30, 2014 at 9:44 AM, Zoltán Kócsi zol...@bendor.com.au wrote: When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Tab stops are hard-coded to every 8th character. There is

Re: [fossil-users] Tab stop width

2014-09-30 Thread Zoltán Kócsi
When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Tab stops are hard-coded to every 8th character. There is no setting to change that. Would it be worthwhile to add such a

Re: [fossil-users] Tab stop width

2014-09-30 Thread dave
... When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Tab stops are hard-coded to every 8th character. There is no setting to change that. Would it be

Re: [fossil-users] Tab stop width

2014-09-30 Thread Ron W
On Tue, Sep 30, 2014 at 10:01 AM, Zoltán Kócsi zol...@bendor.com.au wrote: When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Tab stops are hard-coded to every 8th

Re: [fossil-users] Tab stop width

2014-09-30 Thread Ron W
On Tue, Sep 30, 2014 at 9:58 AM, Richard Hipp d...@sqlite.org wrote: On Tue, Sep 30, 2014 at 9:44 AM, Zoltán Kócsi zol...@bendor.com.au wrote: When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting

Re: [fossil-users] Tab stop width

2014-09-30 Thread Will Parsons
dave wrote: ... When Fossil displays a file in the repository, is it possible to tell it the width of the tab characters in the file? I could not find any setting to do that. Tab stops are hard-coded to every 8th character. There is no setting to change that. Would it

Re: [fossil-users] Tab stop width

2014-09-30 Thread Will Parsons
Stephan Beal wrote: --===1471853227== Content-Type: multipart/alternative; boundary=089e0139fcda1d63f205044c8930 --089e0139fcda1d63f205044c8930 Content-Type: text/plain; charset=UTF-8 On Tue, Sep 30, 2014 at 6:26 PM, Ron W ronw.m...@gmail.com wrote: On the command line, I

Re: [fossil-users] Tab stop width

2014-09-30 Thread dave
... don't and at those places the 4 character tab setting is not that rare. Zoltan ... I second the request. Every place I worked at uses hard tabs, at 4 chars. -dave Are you sure you're talking about hard tabs? Or indentation? It's pretty common to want code indented at 4

Re: [fossil-users] Tab stop width

2014-09-30 Thread Ron W
On Tue, Sep 30, 2014 at 2:27 PM, Stephan Beal sgb...@googlemail.com wrote: On Tue, Sep 30, 2014 at 6:26 PM, Ron W ronw.m...@gmail.com wrote: On the command line, I typically pipe command (including fossil) output to less, which has its own settings for filtering tabs. Which highlights the

Re: [fossil-users] Tab stop width

2014-09-30 Thread Zoltán Kócsi
On Tue, 30 Sep 2014 12:12:11 -0400 Ron W ronw.m...@gmail.com wrote: On Tue, Sep 30, 2014 at 10:01 AM, Zoltán Kócsi zol...@bendor.com.au wrote: [...] Are you referring to the web UI display of files? Yes. Not what is stored, but the way it is displayed in the HTML output. I expect a

Re: [fossil-users] Tab stop width

2014-09-30 Thread Dömötör Gulyás
Wether you like tabs or spaces, both are widely enough used to consider a setting for display purposes in the Web UI. On 30 September 2014 23:01, Zoltán Kócsi zol...@bendor.com.au wrote: On Tue, 30 Sep 2014 12:12:11 -0400 Ron W ronw.m...@gmail.com wrote: On Tue, Sep 30, 2014 at 10:01 AM,

Re: [fossil-users] Tab stop width

2014-09-30 Thread Stephan Beal
HTML does not (AFAIK) distinguish between tabs and other whitespace. It will (by default) collapse all such characters into a single one or (with the right css) display them as-is, but css provides no way to say treat tabs as N spaces (or no way i have wver seen). My point being - in the web ui, i