Jump to content
 







Main menu
   


Navigation  



Main page
Contents
Current events
Random article
About Wikipedia
Contact us
Donate
 




Contribute  



Help
Learn to edit
Community portal
Recent changes
Upload file
 








Search  

































Create account

Log in
 









Create account
 Log in
 




Pages for logged out editors learn more  



Contributions
Talk
 



















Contents

   



(Top)
 


1 Proposed Move  
6 comments  


1.1  Survey  





1.2  Discussion  







2 Character vs. Key  
2 comments  




3 programable printers  
1 comment  




4 Human factors  
1 comment  




5 Bias: Tabs in programming  
1 comment  




6 Bias: "most incompatibility and conversion issues"  
1 comment  




7 back tab key  
1 comment  




8 Tabs in wiki markup  
3 comments  




9 de facto standardized  
1 comment  




10 No mention of the synonym 'hard tab'  
1 comment  




11 Usage in computer games  
1 comment  




12 I really need a tab character. Does anyone have one I can use?  
4 comments  




13 Biased commentary: Eradicating? 8-character tab stops  
1 comment  













Talk:Tab key




Page contents not supported in other languages.  









Article
Talk
 

















Read
Edit
View history
 








Tools
   


Actions  



Read
Edit
View history
 




General  



What links here
Related changes
Upload file
Special pages
Permanent link
Page information
Get shortened URL
Download QR code
 




Print/export  



Download as PDF
Printable version
 




Print/export  



















Appearance
   

 






From Wikipedia, the free encyclopedia
 


This is an old revision of this page, as edited by Mr z (talk | contribs)at07:59, 13 August 2017 (I really need a tab character. Does anyone have one I can use?). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff)  Previous revision | Latest revision (diff) | Newer revision  (diff)

WikiProject iconComputing Start‑class
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
StartThis article has been rated as Start-class on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.

Proposed Move

The following discussion is an archived debate of the proposal. Please do not modify it. Subsequent comments should be made in a new section on the talk page. No further edits should be made to this section.

The result of the debate was move -- tariqabjotu (joturner) 22:58, 1 August 2006 (UTC)[reply]

Rationale: It is nearly always called the tab key not the tab, and anyone searching for tab is just as likely to be looking for index card, GUI, musical or restaurant tabs.

Joe Llywelyn Griffith Blakesley talk contrib 15:52, 26 July 2006 (UTC)[reply]

Survey

Add *Support or *Oppose followed by an optional one-sentence explanation, then sign your opinion with ~~~~
The above discussion is preserved as an archive of the debate. Please do not modify it. Subsequent comments should be made in a new section on this talk page. No further edits should be made to this section.

Discussion

Add any additional comments

Character vs. Key

Looking at this again, most of the article seems to be about the character rather than the key. Maybe it should have been moved to Tab (character)? It is probably OK where it is, as the character is derived from the key and is almost wholly used for indentation or tabulation. However, I would be grateful if anyone could comment on this before I disambiguate all the links to tab.

Joe Llywelyn Griffith Blakesley talk contrib 02:24, 2 August 2006 (UTC)[reply]

But it isn't a character. -PatPeter 01:40, 7 August 2007 (UTC)[reply]

programable printers

IBM Key punches were card programmable. You programmed the tab stops (among other things) on a punch card, and loaded the card onto the control drum. 150.101.166.15 06:08, 21 March 2007 (UTC)[reply]

Human factors

A subtle reason why many people don't like the tabs is because the tab key is on the left edge of the key board. Very few people are aware of the extent to which human factors like keyboard layout precondition their responses. —The preceding unsigned comment was added by 150.101.166.15 (talk) 06:14, 21 March 2007 (UTC).[reply]

Bias: Tabs in programming

"This of course is wrong; good programming practice means ..."

Clearly this is an opinion, it needs removing or a citation, though there are no rules written in stone regarding the construction of code.

A description of the "Tab key" doesn't need to mention programming in the first place. This page should really focus on the origins of the key, modern applications up till the last decade or so, and that's all. I'm pulling the whole section on 'whitespace in programming' because it has nothing to do with the tab key. The HTML section is pushing it, IMHO, but it sort of completes the tables on a typewriter -> printer control code -> on screen formatting evolution. Still, the HTML part could be replaced with something more generic, like a description of tab stops in word processors. A very, very brief mention of how the tab key is overloaded for a number of different computing tasks might cut it. —Preceding unsigned comment added by 24.174.64.232 (talk) 07:11, 21 January 2009 (UTC)[reply]

Bias: "most incompatibility and conversion issues"

The following statement is biased:

"The most incompatibility and conversion issues ensue when the tab key generates HT characters and the editor is configured for tab stops spaced anything but the de facto standard, which for Unix, Unix-derived systems and older systems is every 8 characters and for Windows programming, every 4 characters. Interesting possibilities include 2 and even 3."

First, it would be interesting to see a citation that that is the most common problem. Second, the "problem" described isn't really even a problem in most cases because indentation is for indentaton, not formatting, and any code that doesn't look right unless indented a certain width is sloppy code. Third, a common problem (in my experience) is inconsistent spaces-for-tabs, where part of the program has four space indents, others have five, or two, or eight.

I move that we have a general summary of the arguments for and against. In fact, I move that the whole issue get its own article.

SnappingTurtle (talk) 19:44, 15 January 2008 (UTC)[reply]

back tab key

What is a back tab key? Is it still in use today?--92.227.164.68 (talk) 08:07, 12 April 2009 (UTC)[reply]

Tabs in wiki markup

Is there a way to make a tab in wiki markup, like the in HTML? -JamesyWamesy (talk) 00:13, 31 December 2010 (UTC)[reply]

If you need to use the tab character itself, just insert the character directly — the only reason HTML uses that numeric character entity is that XML (and HTML is either an XML application or XML-like [or rather XML was HTML-like, and both were SGML-like] language, depending on which standard one is referring to) is very restrictive about 'naked' (not encoded by an entity or ensconced in a CDATA) characters in certain parts of the XML file, allowing basically only alphanumerics plus .-_(XML Bible edition 3, page 148). [This article is a little exceedingly cautious because generally a string in the non-markup part of the document is not one of those sensitive areas.]
However, for tabulation or indentation generally, there are better ways of doing things, like using the table feature of MediaWiki (tabular data is what the pre-electronic typesetting tab was invented for), or a double newline to make separate paragraphs, which are converted to

s in HTML by the MW engine and styled such that there is a little extra space between the paragraphs, obviating the need for the outmoded practice of indenting the first-line by either spaces or tabs. Arlo James Barnes 00:59, 15 January 2017 (UTC)[reply]

You can render a tab character with 	, which was described in the article, but not actually done until now. +mt 20:04, 14 February 2017 (UTC)[reply]

de facto standardized

FORTRAN was not the origin of the default setting of tab stops at 8 spaces. FORTRAN statements started in column 7, so FORTRAN would had favored tab stops at 6 spaces. — Preceding unsigned comment added by 216.145.54.158 (talk) 17:31, 10 May 2012 (UTC)[reply]

No mention of the synonym 'hard tab'

When discussing indentation in source code it is common to refer to the usage of a tab as a 'hard tab', in contrast to a 'soft tab'. This is mentioned on the Indentation and Indent style pages. Should it be referenced here?

Dukedave (talk) 21:53, 29 December 2012 (UTC)[reply]

Usage in computer games

How did this go unnoticed? The TAB key is used in almost all multiplayer games to show scores and in singleplayer games it still has usage where it often shows the world map or the player's inventory, its usage goes back from DOOM(1994) where it was used to show the level's map. I will try to edit the page with that info, the problem is that I do not have any sources. — Preceding unsigned comment added by 89.93.153.156 (talk) 08:12, 27 May 2016 (UTC)[reply]

I really need a tab character. Does anyone have one I can use?

I came to this page looking for a tab character I could copy-paste. However I can't seem to find one on the page. Please help! (This is actually serious. I will go back to Google and see if I can find one somewhere else.) - 91.125.149.132 (talk) 00:04, 21 April 2017 (UTC)[reply]

This is not easy to do with XML/HTML since any whitespace (including tabs) is converted to a space character. You might or might not be able to copy the tab character between the periods here:
. .
I see it with Firefox, Chrome, Internet Explorer, Microsoft Edge. +mt 04:36, 21 April 2017 (UTC)[reply]
Suprisingly enough that works, at least with Chrome and pasting into a terminal on Linux.Spitzak (talk) 18:10, 21 April 2017 (UTC)[reply]
The article explains this very clearly: write 	or	 in HTML. In Windows you can write it directly with Alt codes: 1) press the Alt button; 2) enter 09 on the Numpad keys; 3) release Alt.--Lüboslóv Yęzýkin (talk) 18:42, 21 April 2017 (UTC)[reply]

Biased commentary: Eradicating? 8-character tab stops

Many IDEs, especially on Windows, use a default horizontal tab size of 4, yet this has failed to eradicate the 8 standard.

Is it really necessary to speak of eradicating a long standing de facto standard? That seems a bit... editorializing. While it may be true that some Windows IDEs default to 4 character hard tab indents, this isn't some sort of conquest. Windows hasn't "eradicated" the LF-only line ending standard either. --Mr z (talk) 07:59, 13 August 2017 (UTC)[reply]


Retrieved from "https://en.wikipedia.org/w/index.php?title=Talk:Tab_key&oldid=795290452"

Categories: 
Start-Class Computing articles
Unknown-importance Computing articles
All Computing articles
Hidden category: 
Articles with WikiProject banners but without a banner shell
 



This page was last edited on 13 August 2017, at 07:59 (UTC).

This version of the page has been revised. Besides normal editing, the reason for revision may have been that this version contains factual inaccuracies, vandalism, or material not compatible with the Creative Commons Attribution-ShareAlike License.



Privacy policy

About Wikipedia

Disclaimers

Contact Wikipedia

Code of Conduct

Developers

Statistics

Cookie statement

Mobile view



Wikimedia Foundation
Powered by MediaWiki