Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 2.66 KB

other-resources.md

File metadata and controls

42 lines (29 loc) · 2.66 KB
title weight
Other Resources
160

Notepad Replacement

Notepad is a default text editor shipped with Windows. You may want to use Notepad++ instead of Notepad. However, there's no obvious way to do it. From the version 7.5.9 onward, you can run the following command to make Notepad++ replace Notepad (run in cmd.exe with Administrator privileges):

reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /t REG_SZ /d "\"%ProgramFiles(x86)%\Notepad++\notepad++.exe\" -notepadStyleCmdline -z" /f

Note that you may need to use %ProgramFiles%\Notepad++\ to substitute for %ProgramFiles(x86)%\Notepad++\ if you have Notepad++ 64-bit installed, or use other path if your Notepad++ is installed in a non-default location.

Use the the following comment to undo the replacement:

reg delete "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /f

Notepad++ Cheat sheet

Tabs

  • Tab navigation
    • To switch between first and last tab, use Ctrl + Shift + MOUSEWHEEL on tabs. MOUSEWHEEL up will take to first tab while down will take to last tab. FirstAndLast

    • To switch and activate next/previous tab, there are multiple options.

      1. Use Ctrl + MOUSEWHEEL on tabs. MOUSEWHEEL up will take to previous tab while down will take next tab.
      2. Use Ctrl + Page Up for next tab and Ctrl + Page Down for previous tab.
      3. Use Ctrl + Tab for next tab and Ctrl + Shift + Tab for previous tab. Using use Ctrl + Tab or Ctrl + Shift + Tab while MRU is enabled provides great user experience. To enable MRU you can follow Settings->Preferences->MISC.->Document Switcher, then tick both Enable and Enable MRU Behavior.

      ChangeOneByOne

    • To move tab from one position to other position,

      1. Use Shift + MOUSEWHEEL on tabs. MOUSEWHEEL up will move currently selected tab to previous position while down will move to next position.
      2. Use Ctrl + Shift + Page Up for previous position and Ctrl + Shift + Page Down for next position.

      MoveTabs