Takashi Masuda

Results 7 comments of Takashi Masuda

Of course, It's okay :ok_hand: When I wrote the code, I thought `helm-github-stars-refetch-time` should be only used for the control of [`hgs/clear-cache-file-by-time()`](https://github.com/Sliim/helm-github-stars/blob/1.3.2/helm-github-stars.el#L242-L250). However it's a just idea. It's no problem...

FYI: I had a problem of "Stuck control key" #68. Once I removed the setting `define_conditional_modmap`, I was able to avoid that problem.

You may have assigned the Ctrl-Esc key to the application menu in your window manager.

Chrome 拡張 [Create Link](https://chromewebstore.google.com/detail/create-link/gcmghdmnkfdbncmnmlkkglmnnhagajbm) のエスケープ例: https://github.com/ku/CreateLink/blob/0.5.7/src/createlink.ts#L39 仕様はあるのかな?

ちなみに私は環境変数で注入するようにしている。 ~/bin/.envrc で環境変数を定義して、 ``` $ cat ~/bin/.envrc export GITHUB_NIPPOU_USER='masutaka' export GITHUB_NIPPOU_ACCESS_TOKEN='ghp_[SECRET]' export GITHUB_NIPPOU_SETTINGS_GIST_ID='60b0d60372ccba445d9bbdf47d9ced4f' ``` 普段は ~/bin/my-github-nippou というラッパースクリプト経由で github-nippou を使う。direnv exec 使うことで、このスクリプトを使ったときだけ、環境変数が定義されるような形。 ```sh #!/bin/sh direnv exec "$(dirname $0)" /opt/homebrew/bin/github-nippou $@ ```

> FYI: 自分は.gitconfigに載せたい秘匿情報は `.gitconfig.local` というファイルに追加して利用しています。 たしかにユーザー側の対策としてはこれも良いですね。 # github-nippou デフォルトでガードしたほうが良いと思いつつ、早幾年。:sweat_drops: > 認証情報を格納する `hosts.yml` に分かれています。 これも余談になりますが、`$ gh auth token` で取得できる GitHub CLI の token は、macOS だとキーチェーンアクセスアプリに保存されているっぽいですね。 ``` $ gh auth status github.com...