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
| LWin & WheelUp:: | |
| ; Previous Desktop | |
| Send {LWin down}{Ctrl down}{Left down}{LWin up}{Ctrl up}{Left up} | |
| return | |
| LWin & WheelDown:: | |
| ; Next Desktop | |
| Send {LWin down}{Ctrl down}{Right down}{LWin up}{Ctrl up}{Right up} | |
| return |
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
| [].forEach.call(scExtManager.getModule(SitecoreExtensions.Modules.Launcher.LauncherModule).commands.filter(function (c, i, a) { | |
| return c.canExecute(); | |
| }), function(c) { | |
| console.log(c.name + " | " + c.description) | |
| }) |
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
| # Cach style tag insige HTML elements. | |
| style="(.)+?" |
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 git_checkout_match_generator(text, first, last) | |
| found_matches = false; | |
| if rl_state.line_buffer:find("^git checkout ") then | |
| has_start_branch = not rl_state.line_buffer:find("^git checkout[ ]*$") | |
| for line in io.popen("git branch 2>nul"):lines() do | |
| local m = line:match("[%* ] (.+)$") | |
| if m then | |
| if not has_start_branch then | |
| clink.add_match(m) |
NewerOlder