Rahul Sharma (Editor)

Source code editor

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A source code editor is a text editor program designed specifically for editing source code of computer programs by programmers. It may be a standalone application or it may be built into an integrated development environment (IDE) or web browser. Source code editors are the most fundamental programming tool, as the fundamental job of programmers is to write and edit source code.

Contents

Features

Source code editors have features specifically designed to simplify and speed up input of source code, such as syntax highlighting, indentation, autocomplete and brace matching functionality. These editors also provide a convenient way to run a compiler, interpreter, debugger, or other program relevant for the software development process. So, while many text editors can be used to edit source code, if they don't enhance, automate or ease the editing of code, they are not source code editors, but simply text editors that can also be used to edit source code.

Structure editors are a different form of source code editor, where instead of editing raw text, one manipulates the code's structure, generally the abstract syntax tree. In this case features such as syntax highlighting, validation, and code formatting are easily and efficiently implemented from the concrete syntax tree or abstract syntax tree, but editing is often more rigid than free-form text. Structure editors also require extensive support for each language, and thus are harder to extend to new languages than text editors, where basic support only requires supporting syntax highlighting or indentation. For this reason, strict structure editors are not popular for source code editing, though some IDEs provide similar functionality.

A source code editor can check syntax while code is being entered and immediately warn of syntax problems. A few source code editors compress source code, typically converting common keywords into single-byte tokens, removing unnecessary whitespace, and converting numbers to a binary form. Such tokenizing editors later uncompress the source code when viewing it, possibly prettyprinting it with consistent capitalizing and spacing. A few source code editors do both.

Some well-known source code editors

  • Atom (cross-platform, including Linux, OS X, Windows)
  • Brackets
  • Eclipse
  • Emacs (cross-platform, including Unix, Linux, OS X, Windows)
  • Geany (cross-platform, including Unix, Linux, OS X, Windows)
  • Gedit (cross-platform, including Linux, OS X, Windows)
  • IntelliJ IDEA built-in editor (Windows, Linux, OS X)
  • Light Table (cross-platform, including Windows, OS X, Linux)
  • Microsoft Visual Studio built-in editor (Windows)
  • NetBeans
  • Notepad++ (Windows)
  • SlickEdit (cross-platform, including Linux, OS X, Windows, Solaris, HP-UX, AIX)
  • Sublime Text (cross-platform, including Linux, OS X, Windows)
  • TextMate (OS X)
  • UltraEdit (cross-platform, including Linux, OS X, Windows)
  • vi/Vim (cross-platform, including Unix, Linux, OS X, Windows)
  • Visual Studio Code (cross-platform, including Linux, OS X, Windows)
  • Xcode (OS X)
  • Controversy

    Many source code editors and IDEs have been involved in ongoing arguments, sometimes referred to jovially as "holy wars" by the programming community. Notable examples include vi vs. Emacs and Eclipse vs. NetBeans. These arguments have formed a significant part of internet culture and they often start whenever either editor is mentioned anywhere.

    References

    Source code editor Wikipedia