| ⌘T | go to file |
| ⌘⌃P | go to project |
| ⌘KB | toggle side bar |
| ⌘⇧P | command prompt |
| ⌃ ` | python console |
| ⌘⇧N | new window (useful for new project) |
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 paladin_ret(self) | |
| -- Rewrite for CDO by Kyletxag, altered from GoCargo's write. | |
| local myHealthPercent = UnitHealth("player")/UnitHealthMax("player") * 100 | |
| local targetHealthPercent = UnitHealth("target")/UnitHealthMax("target") * 100 | |
| local myManaPercent = UnitMana("player")/UnitManaMax("player") * 100 | |
| local hPower = UnitPower("player","9") | |
| local race = UnitRace("player") | |
| local inqDuration = cdo.buff_duration("player","Inquisition") | |
| -- Interrupt, works equally well with "focus" instead of "target" |
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 paladin_ret(self) | |
| -- Rewrite for CDO by Kyletxag, altered from GoCargo's write. | |
| local myHealthPercent = UnitHealth("player")/UnitHealthMax("player") * 100 | |
| local targetHealthPercent = UnitHealth("target")/UnitHealthMax("target") * 100 | |
| local myManaPercent = UnitMana("player")/UnitManaMax("player") * 100 | |
| local hPower = UnitPower("player","9") | |
| local race = UnitRace("player") | |
| local inqDuration = cdo.buff_duration("player","Inquisition") | |
| -- Interrupt, works equally well with "focus" instead of "target" |
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
| DEBUG=true | |
| class Player | |
| def initialize | |
| @last_health = 20 | |
| @max_health = 20 | |
| @dying_health = 8 | |
| @direction = :forward #initial direction | |
| @retreating = 0 | |
| end |
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
| noremap h i | |
| noremap i k | |
| noremap k j | |
| noremap j h |
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
Show hidden characters
| [ | |
| { "keys": ["h"], "command": "enter_insert_mode", | |
| "context": | |
| [ | |
| {"key": "setting.command_mode"}, | |
| {"key": "selection_empty"} | |
| ] | |
| }, | |
| { "keys": ["H"], "command": "enter_insert_mode", "args": | |
| {"insert_command": "vi_move_to_first_non_white_space_character"}, |
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
| #showtooltip Frostbolt | |
| /script UIErrorsFrame:Hide() | |
| /cast Presence of Mind | |
| /script UIErrorsFrame:Clear() | |
| /script UIErrorsFrame:Show() | |
| /cast Frostbolt | |
| /cast Freeze |
This document outlines the steps I take to setup my environment on windows using WSL. This requires being on the windows 10 Creative update or greater with an Ubuntu 16 installed as WSL.
- Install WSL.
- Install Terminus and setup to use bash for windows (optional).
- Install Acrylic DNS Proxy.
- Download WSL Startup Scripts.
- Install Xming (optional).
OlderNewer