├── .envrc ├── .git-blame-ignore-revs ├── .github ├── dependabot.yml └── workflows │ ├── format-check.yml │ ├── release.yaml │ └── test.yaml ├── .gitignore ├── .goreleaser.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── cmd ├── configure.go ├── exec.go ├── root.go ├── search.go ├── switch.go └── util.go ├── commands.png ├── config └── config.go ├── default.nix ├── devenv.lock ├── devenv.nix ├── devenv.yaml ├── dialog ├── params.go ├── util.go └── view.go ├── entity └── entity.go ├── go.mod ├── go.sum ├── justfile ├── main.go ├── misc └── completions │ └── zsh │ └── _qc ├── qc.png ├── scripts └── package.sh ├── snippet └── snippet.go └── websocket └── websocket.go /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.envrc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/format-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.github/workflows/format-check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/README.md -------------------------------------------------------------------------------- /cmd/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/configure.go -------------------------------------------------------------------------------- /cmd/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/exec.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/search.go -------------------------------------------------------------------------------- /cmd/switch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/switch.go -------------------------------------------------------------------------------- /cmd/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/cmd/util.go -------------------------------------------------------------------------------- /commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/commands.png -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/config/config.go -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/default.nix -------------------------------------------------------------------------------- /devenv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/devenv.lock -------------------------------------------------------------------------------- /devenv.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/devenv.nix -------------------------------------------------------------------------------- /devenv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/devenv.yaml -------------------------------------------------------------------------------- /dialog/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/dialog/params.go -------------------------------------------------------------------------------- /dialog/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/dialog/util.go -------------------------------------------------------------------------------- /dialog/view.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/dialog/view.go -------------------------------------------------------------------------------- /entity/entity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/entity/entity.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/go.sum -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/justfile -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/main.go -------------------------------------------------------------------------------- /misc/completions/zsh/_qc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/misc/completions/zsh/_qc -------------------------------------------------------------------------------- /qc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/qc.png -------------------------------------------------------------------------------- /scripts/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/scripts/package.sh -------------------------------------------------------------------------------- /snippet/snippet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/snippet/snippet.go -------------------------------------------------------------------------------- /websocket/websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qownnotes/qc/HEAD/websocket/websocket.go --------------------------------------------------------------------------------