markdown 我的autohotkey要点
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 我的autohotkey要点相关的知识,希望对你有一定的参考价值。
| name | | description | version |
|:-----|:---:|:------------|:-------:|
| [change case](https://gist.github.com/davebrny/7712575122bbed789416ca4800391621) | | change the case of selected text
| [dynaclip](https://gist.github.com/davebrny/a23080af7aa3a648c5ce54fb61362416) | | basic web clipper for dynalist.io
| [file properties](https://gist.github.com/davebrny/fd31caabaa02a3e7e60095011e97b783) | | open properties for the selected file | 1.1 |
| [google time range](https://gist.github.com/davebrny/101683d4b0277c9d4dd0b13ba82a4bba) || switch between the various time ranges (hour, day, week, month, year)
| [goto open folder](https://gist.github.com/davebrny/4438ca257eb3954a08da5dea181085b0) || show a list of open folders when youre at a "save as" or "open" dialog | 1.3 |
| [lightshot+](https://gist.github.com/davebrny/6746782dc720820cd61a552f470fe9cf) | | various improvements for the lightshot screenshot app | 0.4.3 |
| [linker](https://gist.github.com/davebrny/b85e1470d2dd886053ef3415e7198508) || generate a markdown link from the clipboard or selection | 2.1 |
| [media keys](https://gist.github.com/davebrny/0fec50393cb06a4f51a13ec7d1b77b28) | | turn any key into a media key, then double tap to send the original key | 1.2 |
| [onTop](https://gist.github.com/davebrny/584985caa1fc0dd3396ca39259b68ea4) || manage 'always on top' windows from a context menu | 0.2 |
| [open with sublime text](https://gist.github.com/davebrny/28bae35c10b67df67b993e7c30cfdc71) | | (for the portable version that lacks the context menu option)
| [peek under](https://gist.github.com/davebrny/c513afb65444768657d61f960ef8c037) |️| peek under the current window without deactivating it | 0.3 |
| [quick dates](https://gist.github.com/davebrny/5155f65b53e50f4ddf615cd464c092a9) || hotstrings to quickly type various date formats | 2.1 |
| [restart clipboard](https://gist.github.com/davebrny/91662fdc77a4ada8659be12337ad6c76) | | remember the clipboard state between restarts/shutdowns
| [root url](https://gist.github.com/davebrny/964e124eb1655675a657755215a77906) | | load the root url of the current webpage
| [shift windows](https://gist.github.com/davebrny/e617d196502fa4d4fc4806edaef1a50a) | | window management hotkeys remapped for one handed use
| [spotify operators](https://gist.github.com/davebrny/21b9f8147c82e66c913226ec6a8bc229) | | search operator hotstrings: album:, artist:, year: etc | 1.5 |
| [[square tag]](https://gist.github.com/davebrny/7dbeda0baea3ec467c804772833fe2a5) |️| add a tagspaces style [tag] to a filename | 0.3.1 |
| [text wrap](https://gist.github.com/davebrny/088c48d6678617876b34f53571e92ee6) | | wrap selected text in \<symbols\> | 2.4 |
| [text replace](https://gist.github.com/davebrny/7e956b78f422928ec3e140545fe10483) | | replace a character with another, interactively | 1.0 |
| [text swap](https://gist.github.com/davebrny/8bdbef225aedf6478c2cb6414f4b9bce) | | swap text at a certain character or word | 1.1 |
| [tiny clipboard](https://gist.github.com/davebrny/1d1cf0b3041b031ce06bfe44a10cd289) || microscopic clipboard manager (text only) | 1.2 |
| [youtube/vlc hotkeys](https://gist.github.com/davebrny/f6da569e2360d6bfd896eb7d50c70f66) | | vlc hotkeys remapped to match youtube's hotkeys
## misc
| | |
|:---|:-------------|
| [file explorer previews](https://gist.github.com/davebrny/d88e0f79e7ac3630b66e4cc4f7c73bd2) | view .ahk files in windows explorer preview pane |
| [long press key list](https://gist.github.com/davebrny/ec0b107973cce88217ed14d6183e52ab) | my key list for long press.ahk |
| [sublime snippets](https://gist.github.com/davebrny/978751a35b8cedbbca3d5039dcf49a52) | sublime text auto-complete snippets for some of the functions below |
## scripting
| name | | description | version |
|:-----|:---:|:------------|:-------:|
| [all script settings](https://gist.github.com/davebrny/e1102636e46db1293831aea63cabe485) | | full list script settings to be #included in your main script or used as a quick reference
| [auto_include()](https://gist.github.com/davebrny/55de3ab40499e33e40324ac6a96b70c0) || create a list of .ahk files to be #included in your main script | 1.10 |
| [built_in()](https://gist.github.com/davebrny/02167ebb09cedfb922f875917c23b26b) | | change, restore or reset various built-in script settings | 1.1 |
| [clipboard()](https://gist.github.com/davebrny/9cb0c53fa049832ab46925f3597637c5) | | one line clipboard commands | 1.1 |
| [close ahk errors](https://gist.github.com/davebrny/ffb37b346ecc4ac80446f9958cd78574) | | save to close any ahk error windows
| [compile()](https://gist.github.com/davebrny/17a64afe1233a454a5842d96317dce99) || compile an .ahk file to .exe with the option to search for an icon
| [ex_this()](https://gist.github.com/davebrny/c914a936c1977a525a58c88d7d03792a) | | combine auto-execute sections from #included scripts into your main script | 0.3.6 |
| [goto ahk help](https://gist.github.com/davebrny/3ac1f359d3d033cfe3e072446cb3c401) | | search the selected word in the local autohotkey .chm help file | 1.4 |
| [goto error](https://gist.github.com/davebrny/ff6a00e55d9d81e4bea9fe1d852d84a9) | | goto line and highlight the error text (autohotkey/sublime text only) | 3.4 |
| [list_vars()](https://gist.github.com/davebrny/d5cf686619a3402f1426277a3359521d) || list the variables in the current file or label/hotkey/function
| [msgbox check](https://gist.github.com/davebrny/ab814d0427a67237008dd7888cc464bd) | | check the text in a msgbox for trailing characters | 1.2 |
| [msg()](https://gist.github.com/davebrny/c8fc4dd7af299afe5ec8883faa28784a) || message commands that are quick to type and easy to switch between | 2.5 |
| [reloadr](https://gist.github.com/davebrny/4f14e1edb4fac2fc2459c3d87fa537f7) || reload running scripts from a context menu | 0.7 |
| [run at startup](https://gist.github.com/davebrny/4b329b604ce742ba2581b6e691afea57) | | tray option to run your scripts at startup | 3.0 |
| [script_icon()](https://gist.github.com/davebrny/2d2bc026efd177c41de1e5482b137fa2) |️| automagically search for an icon that matches the script name
| [strip()](https://gist.github.com/davebrny/13b4ab574fd125d732749b406c4351d5) |肋| strip comments, comments blocks and empty lines from a string | 2.3.1 |
| [timer()](https://gist.github.com/davebrny/0b34db1c2c0db78c4b3bb4d23ba26a9a) | | a_tickCount or "QueryPerformanceCounter" timer
| [tray menu defaults](https://gist.github.com/davebrny/63d8120c9f31c0505cfed1cfa9a6e68e) | | default items/actions for the tray menu
## snippets
| | |
|:---|:------------|
| [between()](https://gist.github.com/davebrny/a440ce36d11364d2f7cfc6d89d2f3f63) | split between two characters/words/sentences
| [counter_reset()](https://gist.github.com/davebrny/65e1e8dc9784b85d352c26ef184f9d32) | keep a number within a certain range when adding/subtracting
| [clear_split()](https://gist.github.com/davebrny/982a35ebfa43871846ff8c9a1cda3c24) | clear a split array/object array
| [days_in_month()](https://gist.github.com/davebrny/d8a361412985c494e5b3a5a2954dde5c) | find how many days are in a given month
| [double_tap()](https://gist.github.com/davebrny/383ab4158e4220f5658223475ad57719) | double tap a key to send a hotkey or a label
| [get_selected()](https://gist.github.com/davebrny/535d9a80afe0a0f8fba322b752a9f73c) | gets selected text (or path of selected file/folder) |
| [ordinal()](https://gist.github.com/davebrny/a51dcb71f2ef652464bc863ea64aa5cc) | add an ordinal suffix to a number (1st, 2nd, 3rd etc)
| [passed()](https://gist.github.com/davebrny/f7cbde0d89a5c99cec554e46ba94db11) | get the parameters that have been passed to the script
| [quote()](https://gist.github.com/davebrny/aa91cf602532f358ca9ea913c5b9a50a) | wrap a string in quotes |
| [randomer()](https://gist.github.com/davebrny/564328c8cfd9f85987ed9d4d0578d423) | the default random command but without returning the same number twice in a row
| [send_hotkey()](https://gist.github.com/davebrny/ce25602584c77a50959334ce8ec2e989) | prepare hotkey text for the send command: ^!a to ^!{a}
| [sp()](https://gist.github.com/davebrny/7cab642728f25ca5cad2b9611582a284) | return or append a singular/plural suffix |
| [stored_in()](https://gist.github.com/davebrny/1c9083935a67ad58af04a12b78c91453) | get the variable stored in a name
| [sublime_file()](https://gist.github.com/davebrny/51fe9b24b17db5960700a3f1947b8c82) | get the file that is open/focused in sublime text
| [truncate()](https://gist.github.com/davebrny/53232e6360b2fb48fd5be6a737384a6a) | truncate a string
以上是关于markdown 我的autohotkey要点的主要内容,如果未能解决你的问题,请参考以下文章