https://github.com/komodo/mark-text-macro
Allows marking text in files by pressing alt+M, persists across file close/reopen
https://github.com/komodo/mark-text-macro
Last synced: 3 months ago
JSON representation
Allows marking text in files by pressing alt+M, persists across file close/reopen
- Host: GitHub
- URL: https://github.com/komodo/mark-text-macro
- Owner: Komodo
- License: mit
- Created: 2014-10-06T17:30:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-10-06T17:43:40.000Z (over 10 years ago)
- Last Synced: 2025-01-09T08:25:17.055Z (5 months ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Mark-Text-Macro
===============Allows marking text in files by pressing alt+M, persists across file close/reopen
You can change the color of the highlight by settings the pref via a macro (just delete it afterwards):
```js
var hexColor = "#FF0000";
ko.prefs.setLong('ext_marksel_color', ("require" in window) ?
require("ko/color").RGBToBGR(hexColor) :
xtk.color.hexToLong(hexColor));
```