इस section में हम सीखेंगे कि Editors क्या होते हैं, कैसे Notepad++, Sublime Text जैसे free editors को download किया जाता है, और उनका प्रयोग file creation, editing व saving के लिए कैसे किया जाता है। साथ ही हम useful shortcut keys और tips भी detail में समझेंगे जो web designing में efficiency बढ़ाते हैं।
Editor एक ऐसा software tool होता है जिसकी मदद से हम code या text files लिखते, edit करते और save करते हैं। Web designing में HTML, CSS, JavaScript files लिखने के लिए editors का प्रयोग किया जाता है।
“An editor is a program used to create and modify text or source code files.”
सरल शब्दों में — Editor एक workspace है जहाँ हम अपने web page का code (जैसे HTML tags या CSS styles) लिखते हैं।
Editors को broadly दो categories में बाँटा जा सकता है:
Editors का मुख्य कार्य HTML/CSS/JS जैसी files को create, edit और save करना है। नीचे एक example दिया गया है:
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Welcome to Web Design!</h1>
</body>
</html>
| Shortcut | Function |
|---|---|
| Ctrl + N | New file |
| Ctrl + O | Open existing file |
| Ctrl + S | Save file |
| Ctrl + F | Find text |
| Ctrl + H | Replace text |
| Ctrl + / | Comment/Uncomment line |
| Ctrl + Shift + ↑/↓ | Move line up/down |
| Ctrl + D | Duplicate current line |
| Ctrl + W | Close current tab |
| Shortcut | Function |
|---|---|
| Ctrl + N | New File |
| Ctrl + Shift + P | Command Palette (run commands) |
| Ctrl + D | Select next same word (multi-cursor) |
| Ctrl + / | Comment line |
| Ctrl + Shift + D | Duplicate line |
| Ctrl + P | Goto Anything (file, symbol, line) |
| Ctrl + Shift + ↑/↓ | Move line up/down |
| Alt + Shift + 2 | Split view (2 columns) |