This post has been de-listed
It is no longer included in search results and normal feeds (front page, hot posts, subreddit posts, etc). It remains visible only via the author's post history.
5
Scriptbin Macro
Post Body
My AHK macro for using Scriptbin's markdown mode
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Use input mode for sending keystrokes, preferred for its speed and reliability.
SetWorkingDir %A_ScriptDir% ; Sets the script's working directory to the directory where the script is located.
; Right Shift Enter: Sends two spaces followed by a newline.
> Enter::
Send, {Space 2}{Enter}
return
; Backslash Enter: Sends two spaces, a newline, and four non-breaking spaces (HTML code).
\ & Enter::
Send, {Space 2}{Enter}
return
; Page Up: Sends an asterisk (*).
PgUp::
Send, *
return
; Shift Less Than (<): Sends an asterisk followed by a less than sign.
<::
Send, *<
return
; Shift Greater Than (>): Sends a greater than sign followed by an asterisk.
>::
Send, >*
return
; Tilde Esc: Exits the script.
` & Esc::
ExitApp ; Terminates the script.
return
Author
User Suspended
Account Strength
0%
Suspended 1 month ago
Account Age
2 years
Verified Email
Yes
Verified Flair
No
Total Karma
236
Link Karma
1,248
Comment Karma
3,811
Profile updated: 6 days ago
Posts updated: 9 months ago
Subreddit
Post Details
We try to extract some basic information from the post title. This is not
always successful or accurate, please use your best judgement and compare
these values to the post title and body for confirmation.
- Posted
- 10 months ago
- Reddit URL
- View post on reddit.com
- External URL
- reddit.com/r/u_StiffBrin...