From mboxrd@z Thu Jan 1 00:00:00 1970 MIME-Version: 1.0 Date: Thu, 12 Sep 2013 11:40:12 +0200 Message-ID: From: Mark van Atten To: Fans of the OS Plan 9 from Bell Labs <9fans@9fans.net> Content-Type: text/plain; charset=UTF-8 Subject: [9fans] NFD and p9p acme on OSX Topicbox-Message-UUID: 7e6a82b8-ead8-11e9-9d60-3106f5b1d025 Running p9p on OSX, I find it useful to put this in my rc profile: fn ls { builtin ls $* | iconv -f UTF8-MAC -t UTF-8 } fn lc { builtin lc $* | iconv -f UTF8-MAC -t UTF-8 } so as to deal with the NFD used by the OSX file system and list names containing non-ascii characters correctly. But this doesn't solve the corresponding problem when clicking B3 to open a directory in acme. Am I overlooking something? If not, what do people use to deal with this---perhaps a patch to lib9? Mark.