Skip to content

Instantly share code, notes, and snippets.

View peiel's full-sized avatar
🎯
Focusing

Peiel peiel

🎯
Focusing
View GitHub Profile
@peiel
peiel / macos-idea-sublime-keymap
Last active June 10, 2021 05:48
macos jetbrain idea keymap
[
{ "keys": ["ctrl+g"], "command": "find_under_expand" },
{ "keys": ["super+d"], "command": "duplicate_line" },
{ "keys": ["shift+enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line.sublime-macro"}, "context":
[
{ "key": "overlay_has_focus", "operator": "equal", "operand": false },
],
},
{ "keys": ["super+alt+enter"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Add Line Before.sublime-macro"} },
{ "keys": ["super+backspace"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete Line.sublime-macro"} },
#!/bin/bash
###
### my-script — does one thing well
###
### Usage:
### my-script <input> <output>
###
### Options:
### <input> Input file to read.
### <output> Output file to write. Use '-' for stdout.
//
// TextStyle.swift
//
// Created by Rob Napier on 12/20/19.
// Copyright © 2019 Rob Napier. All rights reserved.
//
import SwiftUI
public struct TextStyle {