プロジェクトの1段落はここに
これらの手順では、開発とテストの目的でローカルマシン上でプロジェクトのコピーを作成して実行します。
ライブシステムにプロジェクトを配備する方法については、配備を参照してください。
| " Settings | |
| set nosmoothscroll | |
| let fullpagescrollpercent = 100 | |
| let lastactivetablimit = 50; | |
| let lastclosedtablimit = 50; | |
| let scrollduration = 25 | |
| let scrollstep = 65 | |
| let zoomstep = 15 | |
| let hintcharacters = "asdfghjkl"; | |
| let homeurl = "http://google.com"; |
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| # append this into your .bashrc | |
| export FZF_DEFAULT_OPTS='--layout=reverse --border --multi --ansi --exit-0' | |
| function ghq-list-then-look | |
| { | |
| local selected=$(ghq list -p \ | |
| | fzf --height 90% --preview='find {} -depth 1 -type f | grep -i -e "readme.[(md)|(mkd)|(markdown)]" | head -1 | xargs head -$LINES') | |
| if [ -n "${selected}" ]; then | |
| clear | |
| cd "${selected}" |
| repo_name=something-new | |
| cd `ghq root`/github.com/MichEam | |
| mkdir $repo_name | |
| cd $repo_name | |
| git init | |
| echo "# $repo_name" > README.md | |
| git add . && git commit -m "init commit" |
| {:paths ["."] | |
| :deps {clansi {:mvn/version "1.0.0"}}} |
| {{ $defaultWidth := "100%" }} | |
| {{ $defaultHeight := "500px" }} | |
| {{ if .IsNamedParams }} | |
| <iframe | |
| src="https://codesandbox.io/embed/{{ .Get "id" }}?codemirror=1&fontsize=13&hidenavigation=1&theme=dark&view=preview" | |
| style="width:{{ with .Get "width" }}{{.}}{{ else }}100%{{ end }}; height:{{ with .Get "height" }}{{.}}{{ else }}{{ $defaultHeight }}{{ end }}; border:0; border-radius: 4px; overflow:hidden;" | |
| title="{{ with .Get "title" }}{{.}}{{ else }}{{ .Get "id" }}{{ end }}" | |
| allow="geolocation; microphone; camera; midi; vr; accelerometer; gyroscope; payment; ambient-light-sensor; encrypted-media; usb" | |
| sandbox="allow-modals allow-forms allow-popups allow-scripts allow-same-origin" |
| package main | |
| import ( | |
| "encoding/json" | |
| "log" | |
| "fyne.io/fyne/v2" | |
| "fyne.io/fyne/v2/app" | |
| "fyne.io/fyne/v2/container" | |
| "fyne.io/fyne/v2/data/binding" |
| module sync/wait | |
| go 1.18 | |
| require github.com/stretchr/testify v1.7.1 | |
| require ( | |
| github.com/davecgh/go-spew v1.1.0 // indirect | |
| github.com/pmezard/go-difflib v1.0.0 // indirect | |
| gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect |
| module how/to/test/urfave/cli/command | |
| go 1.19 | |
| require github.com/urfave/cli/v2 v2.20.2 | |
| require ( | |
| github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | |
| github.com/russross/blackfriday/v2 v2.1.0 // indirect | |
| github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect |