Naoya Yamashita

Results 67 issues of Naoya Yamashita

cc @Bad-ptr I agree this comment. https://github.com/nex3/perspective-el/issues/88#issuecomment-513996542 `perspective.el` and `persp-mode.el` provide almost the same feature but there are also different features. If we can add some options so that users...

discussion

Hi! I found those packages and fix some package-lint/check-doc/byte-compiler warnings for my first contribution step! ## dired-avfs ### before ``` dired-av… 1 1 error Package should have a Homepage or...

Hi! I found this package and some [package-lint](https://github.com/purcell/package-lint) warnings. This commit fixes below package-lint warnings ``` Package should have a Homepage or URL header. (emacs-lisp-package) There is no (provide 'org-beautify-theme)...

Thanks for such a great package! I try this package, this parser works like a charm. One point I notice, please output as a alist instead of hash-table? Hash tables...

question

related #12, just list is more friendly over vector for Elisp users.

Hello, thanks for creating this package! I fix trivial for my first contribution step!

https://github.com/abo-abo/hydra/blob/2d553787aca1aceb3e6927e426200e9bb9f056f1/hydra.el#L332-L350 https://github.com/abo-abo/hydra/commit/27b7f40cb21157be0dabc37046b83ed99151a26e It's 2021. please use latest advice package. (and easy remove feature is useful for user convenience)

こんにちは。 mewのElispファイル群について、diredで下記Elispを実行しました。 ```emacs-lisp (dotimes (i 5) (let ((file (dired-get-filename)) (indent-tabs-mode t)) (with-temp-file file (insert-file-contents file) (indent-region (point-min) (point-max)) (emacs-lisp-mode) (delete-trailing-whitespace) (indent-region (point-min) (point-max))) (dired-next-line 1))) ``` インデントについて、MELPAの [CONTRIBUTING](https://github.com/melpa/melpa/blob/master/CONTRIBUTING.org#making-your-package-ready-for-inclusion) には[Emacs Lisp...

このプランチではEmacs Lisp conventionsに沿った、スペースでのインデントを施しました。 もちろんこのdiffは少し過激ではありますが、[マージに至った例](https://github.com/skk-dev/ddskk/pull/141)もあります。 ぜひご考慮いただければと思います。 下記Elispをdiredで実行しました。 ```emacs-lisp (while t (let ((file (dired-get-filename)) (indent-tabs-mode nil)) (with-temp-file file (insert-file-contents file) (emacs-lisp-mode) (delete-trailing-whitespace) (untabify (point-min) (point-max)) (indent-region (point-min) (point-max))) (dired-next-line 1))) ```

こんにちは。 MELPAでMewをダウンロードできるようですが、MELPAでMewだけをダウンロードしてもバイナリがないためMewを起動できません。 MewがMELPAに入った経緯を調べたのですが、purcellさんがささっと入れたものがそのまま残っているようです。 https://github.com/DanielG/ghc-mod/pull/125 infoを見ましたが、MELPAに関する言及はないようです。MELPAユーザーはどのようにバイナリをインストールすれば良いでしょうか。。?