Skip to content

Latest commit

 

History

History
69 lines (58 loc) · 6.18 KB

File metadata and controls

69 lines (58 loc) · 6.18 KB

this is read09

Choosing A Text Editor

img

What is a text editor?

A text editor is a piece of software that you download and install on your computer, or you access online through your web browser, that allows you to write and manage text, especially the text that you write to build a web site.it has to be one of the most important tools you can use as an aspiring web developer.

has to be one of the most important tools you can use as an aspiring web developer:

  1. code completion: allows you to start typing, and the code completion feature will display possible suggestions based on what you originally typed
  2. syntax highlighting: a feature that takes the text you type, and makes it more noticeable by colorizing the text
  3. a nice variety of themes o reduce eye strain and fatigue
  4. the ability to choose from a healthy selection of extensions available when you need them .
  5. able to write your HTML and CSS more efficiently
  6. series of themes :These themes will allow you to change the color of the background of your text editor, the series of colors in your text,and sometimes themes will affect other aspects of your text editing software as well.

Using The Software That Already Comes With Your Computer :

Every computer will come with its own text editor. On Mac computers, the text editor that comes with your computer is called,“Text Edit.” On Windows computers, the text editor that comes with your computer is called, “Notepad.”And on Linux computers, each distribution will have its own text editor already installed but which one might depend on the flavor of your particular distribution. There are other text editors that have features that you may be interested in, like the ones we discussed before. Usually, the text editors that come on your computer don’t have many features to speak of. They’re the barest bare bones text editors you’ll encounter.

If you want to try using the text editors that come with your

computer, there’s a couple of caveats that I’d like to make you aware of:

  1. make sure that when you use the text editor that comes on your computer, that you’re creating code in a plain text editor.
  2. You should not see options for making text bold, underlined, or italic.Plain text has no formatting options.
  3. If you can make your text bold, underlined or italic, then you might need to change a setting somewhere. Please make sure you’re coding in plain text.
  4. make sure that when you use the text editor that comes on your computer, that you first create a folder on your computer somewhere maybe on your Desktop to store your entire website.
  5. As you create new documents with the text editor that comes on your computer, save those files in the appropriate folders or sub-folders within the main website folder.
  6. make sure that when you’re saving your file, that they have the appropriate extension at the end of the file names.

Third-Party Options:

Notepad++, Text Wrangler, BB Edit, Visual Studio Code, Atom, Brackets, and Sublime Text. These text editors can all be downloaded and installed to your computer from their respective websites.

img

  1. NotePad++ NotePad++ is a free text editor for Windows Computers only.. It has syntax highlighting and code completion, as well as word completion and function completion. It has a zoom in an out feature, it’s own online community, and its own chat room for questions that may arise.
  2. TextWrangler/BB Edit: img TextWrangler is for Mac computers only, and you used to be able to download it from the Mac App Store.Bare Bones Software has incorporated TextWrangler into its more robust, big brother, BB Edit—another feature packed text editor BB Edit is software that you purchase.
  3. Visual Studio Code :

img Visual Studio Code is a free text editor made by the folks at Microsoft. It is available for Windows computers, Mac computers and Linux computers.VS Code has the Emmet shorthand for HTML and CSS already built-in with no additional work from you at all. VS Code has everything: syntax highlighting, themes, extensions and code completion. 4. Atom:

img Atom is a free text editor that’s available for download for Windows computers, Mac computers and Linux computers. Atom is brought to you by the folks at GitHub .It has syntax highlighting, themes, extensions, the works! Atom is definitely a software to check out and test drive for yourself.

  1. Brackets:

img Brackets is a free text editor that’s available for download for Windows computers, Mac computers and Linux computers. It’s made and maintained by the good folks at Adobe—yep, the Photoshop people.Brackets only supports HTML, CSS and JavaScript, though more coding capabilities can be added through extensions. Brackets includes all of the features one may want when using a text editor including something called “Live Preview” which updates your website once you make a change automatically.

  1. Sublime Text:

img ublime Text enjoys a history of being fast and responsive while being extensible as well. There’s no doubt that Sublime Text will tick the check boxes of what to look for in a text editor. It has syntax highlighting, it has code completion, it has themes and extensions.

The Difference Between Text Editors and IDEs:

A text editor kind of gives away what it does in the title—it edits text.It also manages text, and manages files. I love that name “text wrangler” because in a way that’s what really a text editor does. It wrangles your text together into something meaningful. An IDE (Integrated Development Environment) is suite of different software all coming together. An IDE is a text editor, a file manager, a compiler, and a debugger all in one software package.