- Three finger drag
- Hide recent apps in dock
- System Preferences -> Dock & Menu Bar -> Uncheck "Show recent applications in Dock"
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
| "" -- Map IDE actions to IdeaVim -- https://jb.gg/abva4t | |
| "" Map \r to the Reformat Code action | |
| "map \r <Action>(ReformatCode) | |
| "" Map <leader>d to start debug | |
| "map <leader>d <Action>(Debug) | |
| "" Map \b to toggle the breakpoint on the current line | |
| "map \b <Action>(ToggleLineBreakpoint) |
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
| { | |
| "description": "hyper-q to lock", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "q", | |
| "modifiers": { | |
| "mandatory": [ | |
| "right_command", | |
| "right_control", |
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
| { | |
| "description": "hyper-z to sleep", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "z", | |
| "modifiers": { | |
| "mandatory": [ | |
| "right_command", | |
| "right_control", |
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
| { | |
| "description": "Toggle Chinese English With caps_lock, hyper key if held", | |
| "manipulators": [ | |
| { | |
| "from": { | |
| "key_code": "caps_lock", | |
| "modifiers": { | |
| "optional": [ | |
| "left_control" | |
| ] |
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
| { | |
| "Profiles": [{ | |
| "Ansi 5 Color": { | |
| "Green Component": 0.3333333432674408, | |
| "Blue Component": 0.80000001192092896, | |
| "Red Component": 0.80000001192092896 | |
| }, | |
| "Tags": [ | |
| ], |
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
| fun countOccurringWords(str: String): String { | |
| val textMap: HashMap<String, Int> = HashMap<String, Int>() | |
| val textList = str.split(" ").toTypedArray() | |
| // Filter string into a map by text | |
| for (text in textList) { | |
| if (!containsAppierChars(text)) continue | |
| if (textMap.containsKey(text)) { | |
| val times = textMap.getValue(text) |