Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
# mycmd: command wrapper for functions and executables
PREFIX="$(basename "$0")-"
get_commands () {
local array
local cmd_cand=()
見出し部分。ここをクリック。**見出し部分のMarkdown太文字は不可**
Name|Description|Default Value|Mandatory| :---|:----------|:------------|:--------| config_dir | Directory for some gcpm related files.|**~/.config/gcpm/** (user)
**/var/cache/gcpm** (service)|No oatuh_file | Path to OAuth information file for GCE/GCS usage.|**/oauth**|No service_account_file | Service account JSON file for GCE/GCS usage.If not specified, OAuth connection is tried.|-|No
@rcmdnk
rcmdnk / asterisk.md
Last active November 30, 2018 07:42

asterisk escape test:

hoge

*hoge*

*hoge*

*hoge*

#Include %A_LineFile%\..\vim.ahk
Return
#if
g_LastCtrlKeyDownTime := 0
g_AbortSendEsc := false
g_ControlRepeatDetected := false
"Settings
"set nohud
"set autohidecursor
"set noinsertmappings
set smoothscroll
set autoupdategist
set noautofocus
"let scrollstep = 30
let fullpagescrollpercent = 90
{
"title": "numlock",
"rules": [
{
"description": "numlock: X -> FX",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "escape"
{
"title": "Switch key",
"rules": [
{
"description": "F12 switch",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "f12"
@rcmdnk
rcmdnk / sticky.json
Last active September 1, 2017 04:21
Sticky shift by semicolon example for Karabiner-Elements
{
"title": "sticky",
"rules": [
{
"description": "sticky shift - shift modifier",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "semicolon"
見出し部分。ここをクリック。**見出し部分のMarkdown太文字は不可**
*divの下に行を空けないで書くとMarkdownは変換されない*

ここが隠れてる部分。

中身には色々書ける。

--- a/src/ansi.c
+++ b/src/ansi.c
@@ -1508,8 +1508,24 @@
{
if (curr->w_stringp >= curr->w_string + MAXSTR - 1)
curr->w_state = LIT;
+# ifdef UTF8
+ else if (c < 0x80)
+ *(curr->w_stringp)++ = c;
+ else if (c < 0x800)