Skip to content

Add content for Notepad++ #103

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions docs/IDE/Notepad++/Notepad++.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
layout: default
title: Notepad++
description: "Warning: The following page is currently under construction, find more about the details in future patches, or if you choose to add in the article see info on the bottom of the page."
description: An article dicussing features, key releases and getting started topics about Notepad++
nav_order: 1
parent: IDE
has_children: false
Expand All @@ -10,10 +10,19 @@ has_children: false
{{ page.title }}
======================

{% include under_construction.html %}

Download: https://notepad-plus-plus.org/

<br>
Notepad++ is a free and open-source text and source code editor for Windows. It is extremely lightweight and is very useful for quick code edits, psuedocoding, or note taking. Notepad++ has a wide support for a wide variety of programming languages. Itsupports syntax highlighting and folding for programming languages (e.g., C++, Python, HTML, CSS, JavaScript). The highlighting feature makes the code more readable by coloring different parts of the syntax, while folding allows users to collapse sections of code to make it easier to manage large files.

It's worth knowing that Notepad++ is primarily a text editor. It does not come with built-in support for compiling or debugging code. Users will need to use external compilers and debuggers, which can be less convenient than integrated development environments (IDEs) like Visual Studio, that provide these tools out of the box. Unlike full-fledged IDEs, Notepad++ also lacks features like project management, integrated version control, and direct execution of code.
This doesn't make it any less useful!

To use notepad, simply download it from the link above, and then install it. Run it and start writing! No other nonsense involved!

![image](https://github.com/JDSherbert/Programming_HandBook/assets/43964243/306f8c72-8027-415c-a00e-13eba781684a)


---

<br>
#### Author: JDSherbert
#### Published: 24/06/2024
Loading