The Notepad that ships with current Windows 11 versions is not the same Notepad that everyone complained about for two decades. Microsoft rebuilt it — adding tabs, dark mode, automatic session restore, improved search, and better text handling for modern workflows. It’s still simple by design, but the current version is genuinely capable for its intended role: fast, distraction-free plain text editing. This fits into the wider topic we cover in our Windows 11 How-To Guides.
What’s actually new in Windows 11 Notepad
For users who assume Notepad is still the 1985 design:
- Tabs: multiple files open in one window, with tabs at the top to switch between them. No more stacking Notepad windows across the taskbar.
- Session restore: close Notepad with unsaved content → reopen → the content is still there, exactly as you left it. The unsaved “drafts” persist across restarts. No more losing typed text when Notepad closes accidentally.
- Dark mode: follows the Windows 11 system dark/light mode setting automatically. Toggle: Settings → Appearance → Application theme.
- Spell check: red underlines for misspelled words, right-click for suggestions. Optional per-file; turn it off in Edit menu → Spell check if it’s distracting for code or command content.
- Find and replace: improved with regex support, case sensitivity, and word boundary options — considerably more powerful than the original.
When Notepad is the right tool
Notepad is deliberately simple — no formatting, no styling, no document structure. This makes it exactly right for:
- Quick notes and temporary text you need to see and type without loading a full application
- Stripping formatting from copied content (paste rich text from a webpage → copy the plain text from Notepad → paste it cleanly into any application)
- Editing configuration files, .txt files, .ini files, .env files, and other plain-text formats
- Writing or editing basic scripts and code where a full editor is overkill
- Log file viewing (Notepad handles large text files better than Word)
- Quick calculations or temporary workspaces cleared immediately after use
The tabs feature specifically makes Notepad useful as a multi-file scratchpad — open several .txt files simultaneously for comparison or reference while working. Previously this required multiple Notepad instances cluttering the taskbar.
Keyboard shortcuts
| Shortcut | Action |
| Ctrl+N | New tab |
| Ctrl+Shift+N | New window |
| Ctrl+W | Close current tab |
| Ctrl+Tab | Next tab |
| Ctrl+Shift+Tab | Previous tab |
| Ctrl+S | Save |
| Ctrl+Shift+S | Save As |
| F5 | Insert current date and time |
| Ctrl+G | Go to line number |
| Ctrl+H | Find and Replace |
| Ctrl+E | Open search panel (find) |
F5 (date/time insert) is a less-known but consistently useful shortcut for creating time-stamped entries in a log file or journal. With “Log” mode enabled (Format → Log mode, or adding .LOG on the first line of a file): every time the file is opened, the current date and time are automatically appended — turning a simple text file into a persistent journal without any additional software.
The paste-to-strip-formatting trick
The most universally-useful Notepad workflow: paste formatted content (from a webpage, email, document, or PDF) into Notepad → the formatting is stripped, leaving plain text → Ctrl+A → Ctrl+C → paste the clean text into the destination. This works for any content where you want the text but not the original styling, and Notepad remains the fastest tool for this despite various “paste as plain text” options existing in other apps.
On Windows 11 with clipboard history enabled (Win+V): you can see the original rich-text clipboard alongside the plain-text version. But the Notepad method works without clipboard history and doesn’t require knowing about the Win+V feature — it’s been a reliable workflow for years and remains the default approach for many experienced users.
Encoding settings — why they matter for text files
Notepad’s File → Save As shows encoding options: UTF-8 (the modern standard), UTF-8 with BOM, UTF-16 LE BOM, UTF-16 BE BOM, ANSI. Most text files should be saved as UTF-8 — this handles international characters and special symbols correctly without issues on modern systems.
ANSI (the old default): limited character set, causes display problems for non-English text on systems with different locale settings. UTF-8 with BOM: some older applications misread the BOM (Byte Order Mark) and show it as a character at the start of the file. For web files, scripts, and modern applications: UTF-8 without BOM is the correct choice. For files consumed by legacy Windows applications that expect BOM: UTF-8 with BOM.
Our guide on WSL on Windows 11 covers Visual Studio Code and other full text editors that complement Notepad for more complex coding work, and our guide on Snipping Tool covers the OCR text extraction that works well with Notepad as the destination for extracted text. For advanced text editing beyond Notepad’s capabilities, Notepad++ documentation covers the free open-source editor that extends where Windows’ Notepad leaves off, with syntax highlighting, plugins, and macros.
Line endings — a hidden compatibility issue
Notepad in Windows 11 can create files with either Windows line endings (CRLF — carriage return + line feed) or Unix line endings (LF — line feed only). The status bar at the bottom of Notepad shows the current line ending format for the open file. Older Notepad couldn’t open Unix-format files properly; the current version handles both.
Why this matters: scripts and configuration files shared between Windows and Linux systems need the correct line ending for their target platform. A shell script with Windows CRLF line endings fails on Linux with a “command not found” error because the carriage return character becomes part of the command name. View → toggle “Show status bar” (if not visible) → the status bar shows the current line ending format — CRLF or LF. Edit → toggle between them to convert.
Notepad vs alternatives for specific use cases
Knowing when to graduate from Notepad to another tool:
- Notepad is sufficient for: plain text editing, config files, quick notes, log file viewing, format-stripping, simple log journals
- Notepad++ adds: syntax highlighting for 80+ languages, macros, column editing, compare files, hex view, plugin ecosystem — the right choice for regular code or config file editing
- Visual Studio Code adds: language intelligence, debugging, Git integration, extensions — the right choice for actual development work
- Vim or Nano (in WSL) add: terminal-based editing for server configurations and Linux-native workflows
The upgrade path from Notepad to something more capable is clear-cut: the moment you find yourself wishing for syntax highlighting, find-in-files, or code folding — that’s the sign to install VS Code or Notepad++ for those tasks. Notepad remains appropriate for everything it was always good at; the new tabs and session restore make it better at those things without cluttering the interface with features that would make it slower for its intended simple use cases.
| Task | Right tool |
| Paste and strip formatting | Notepad |
| Quick plain text note | Notepad |
| Edit .txt / .ini / .env files | Notepad or Notepad++ |
| Write Python / JavaScript / HTML | VS Code or Notepad++ |
| View log files (100MB+) | Notepad (or LogExpert for filtering) |
| Compare two text files | Notepad++ with Compare plugin |
| Timed journal entries | Notepad with .LOG file mode |
The current Windows 11 Notepad is significantly better than its reputation suggests, and the reputation is based on older versions. Tabs, session restore, dark mode, and improved find-and-replace turn it from “the app you open by accident” into a genuinely useful quick editor. For its specific use cases — plain text, quick edits, format stripping — it’s still the fastest tool available by virtue of being built-in and lightweight. The 2-second launch time beats any full editor, which matters when you just need to paste some text and check something quickly.
Notepad’s .LOG file mode
One of Notepad’s genuinely clever hidden features: create a text file → type .LOG (all caps, with period) on the first line → save and close → reopen the file → the current date and time are automatically appended below the .LOG line. Each subsequent open adds a new timestamp.
This creates a simple dated log without any special software. Useful for: keeping a daily work journal, logging support calls or incidents, tracking time spent on tasks, or maintaining a running record of any kind of repeated event. Just open the file, write what happened, close — the timestamp is automatic. Some users have maintained these .LOG files for years as simple personal journals or work records.
Opening files in Notepad from File Explorer
Right-click any file in File Explorer → “Open with” → Notepad. Or: shift+right-click → “Open with” → Notepad (the shift adds more options to the context menu). On Windows 11, “Edit” in the right-click menu for text files defaults to Notepad in many configurations.
If Notepad doesn’t appear as an “Open with” option for non-.txt files: right-click → “Open with” → “Choose another app” → Notepad → don’t check “Always use this app” unless you want Notepad to become the default for that file type. Using Notepad to view an arbitrary file (a .config file, a .log from an application, a .nfo, a .bat script) is helpful for inspection; setting Notepad as the permanent default for those types is usually unnecessary.
Zoom and accessibility in Notepad
Ctrl+Plus and Ctrl+Minus zoom in and out in Notepad — useful for quickly making text larger for readability without changing the system font size. Ctrl+0 resets to default zoom. The zoom level persists between sessions but doesn’t affect the file content, only the display size. For users who increase system text size in Settings: Notepad respects the Windows text size scaling and looks proportionally correct without needing separate adjustment.
The current Notepad also supports the Windows text cursor settings — if you’ve enabled a thicker cursor or cursor highlight in Accessibility settings, Notepad reflects those settings. Spell check (when enabled) uses Windows’ built-in spell check dictionary, which follows the Windows display language setting. Multiple languages work if the appropriate language packs are installed via Settings → Time & language → Language & region.
Notepad’s story in Windows 11 is essentially: Microsoft finally gave this essential tool the minimal updates it needed to work properly in a modern computing environment. Tabs were the single most-requested feature for decades. Session restore addresses the frustration of lost content that was a regular complaint. These aren’t big features — they’re basic quality-of-life improvements that make the tool not actively annoying. The result is a simple editor that does its job without getting in the way, which is exactly what Notepad should be.
Managing multiple Notepad tabs efficiently
With tabs: Notepad becomes a usable multi-document workspace. Some practical tab workflows:
- Keep a “reference” tab with frequently-looked-up information — account IDs, server addresses, version numbers for a project — alongside a “working” tab for active editing
- Open all the config files for a project simultaneously in tabs — switch between them with Ctrl+Tab without the files and their paths getting lost
- Comparison tabs: open two similar configuration files in adjacent tabs, manually compare by reading, or copy both into a single tab to line up differences
- Draft collection: multiple draft versions of a message or document in separate tabs for comparison before choosing the best version to finalise
The session restore means tabs you left open (including unsaved ones) are still there next time Notepad opens. This makes Notepad a lightweight persistent scratchpad — you don’t need to save the content to preserve it between sessions. Close Notepad without saving → reopen tomorrow → the unsaved text is still in the tab. This is different from the old behaviour where closing without saving meant permanent loss.
Notepad on the Microsoft Store
Notepad is now distributed through the Microsoft Store and updates independently of Windows Updates. This means Notepad can receive new features and bug fixes faster than in the past, when it only changed with major Windows releases. Check the Microsoft Store for Notepad updates if a feature you’ve read about isn’t present — it may have been added in a recent update. The Store version also allows Notepad to be reset or reinstalled independently if the app develops issues: Settings → Apps → Notepad → Advanced options → Reset. Our guide on Windows 11 Group Policy Editor covers an adjacent issue.
For users who prefer the older Notepad experience: downgrading isn’t an official option, but the changes are additive — tabs are opt-in by opening multiple files, session restore can be cleared (File → clear all recent), and the overall interface is recognisably Notepad with new capabilities rather than a complete redesign. The new features don’t get in the way of the simple text editing that Notepad has always done; they’re available when useful and invisible when not needed. See also Windows 11 Copilot for a related case.






