This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
# Summary | |
Add a separate cursor to every place where the currently highlighted text is found. | |
# Usage | |
1. Select a piece of text. | |
1. On the toolbar, click: Plugins > Python Script > Scripts > AddCursorToEveryInstanceOfHighlightedText | |
# Requirements | |
1. Notepad++ v8.6 or higher. (Otherwise, manually enable Multi-Select in Settings > Preferences > Editing). |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- | |
Logitech Performance Mouse MX button mappings | |
- Close SetPoint | |
- Place this file in "C:\Users\%USERNAME%\appdata\Roaming\Logitech\SetPoint" | |
- Restart SetPoint | |
- Original guide: https://tinkertry.com/logitech-multiple-desktop-mouse-mappings-for-windows-10 | |
Mapping: | |
- Scroll Wheel Left/Right == Browser Back/Forward | |
- Thumb Button == Task View (Win + Tab) | |
- Forward Arrow == Tab Switcher (Alt + Tab) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function makePlot = MakeAutoSubplot(numRows, numCols) | |
% Creates a new subplot each time 'makePlot()' is called. Subplots are | |
% arranged in a numRows-by-numCols grid. See Matlab documentation on | |
% subplot for details. | |
% | |
% Uses a closure of 'numRows' & 'numCols' to take care of bookeeping. | |
% | |
% Return: | |
% makePlot - function pointer; calling it creates the next subplot | |
% |