QuickReplaceAtCursor
Sublime text plugin for quickly replacing one or more predefined characters at the cursor position with another set of characters.
Details
Installs
- Total 454
- Win 294
- Mac 103
- Linux 57
Jan 15 | Jan 14 | Jan 13 | Jan 12 | Jan 11 | Jan 10 | Jan 9 | Jan 8 | Jan 7 | Jan 6 | Jan 5 | Jan 4 | Jan 3 | Jan 2 | Jan 1 | Dec 31 | Dec 30 | Dec 29 | Dec 28 | Dec 27 | Dec 26 | Dec 25 | Dec 24 | Dec 23 | Dec 22 | Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- bitbucket.org
QuickReplaceAtCursor
Sublime text plugin for quickly replacing one or more predefined characters at the cursor position with another set of characters. This can for example be used to quickly insert unicode characters.
Installation
Via Package Control
Search for QuickReplaceAtCursor
Manual
Clone this project in your Packages folder under the name QuickReplaceAtCursor
.
git clone https://JorisL@bitbucket.org/JorisL/quickreplaceatcursor.git QuickReplaceAtCursor
Usage
By default this plugin is configured to quickly replace a single character with it's corresponding greek alphabetical symbol, or replace several characters with a mathematical symbol.
This plugin is - for example - configure to replace the character “p” just before the cursor with the character “π”, or “inf” with “∞” when executing the QuickReplaceAtCursor command (default ctrl+shift+g, or via the command pallate).
Configuration
The settings of this plugin (Preferences → Package Settings → QuickReplaceAtCursor → Settings - Default
) has one configuration parameter replacements
which is a dictionary (list) with each set of characters to possibly be replaced followed by the corresponding characters to be replaced by.
This can be modified in the Settings - User
file.
An example configuration can be:
{
"replacements": {
"a": "ɑ", // alpha
"deg": "°",
}
}
With this example configuration; when the text just before the cursor is “deg” (without quotes), this will be replaced by “°” (also without characters). When the character before the cursor is “a”, this will be replaced by “ɑ”. If neither is the case then nothing will happen.