Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
デフォルトのエンコーディングを utf-8 のままにしておきます。 しかし、Windows では、cp1251 を使用して dired でファイル名の一部を表示したいと考えています。(Windows では utf がサポートされていないため)
すべてが次のように表示されます。\361\345\354
\361\345\354
では、どうすればこれを作ることができますか:
(setq coding-system-for-read 'cp1251)
diredモードのみで、他のモードではありませんか?
これを試すことができます:
(add-hook 'dired-mode-hook (lambda () (make-local-variable 'coding-system-for-read) (setq coding-system-for-read 'cp1251)))