Floobits / atom-term3

Open Terminal tabs in Atom. Fork of Term package
Other
88 stars 17 forks source link

Accents characters #10

Open fcavani opened 8 years ago

fcavani commented 8 years ago

Hi! Accents character doesn't work in Atom on mac os x El Cap. Combinations like fn+swift+arrow up/down for historic view don't work too.

Tanks

kans commented 8 years ago

What shell do you use?

fcavani commented 8 years ago

bash on mac os terminal

On 30 de out de 2015, at 8:46 PM, Matt Kaniaris notifications@github.com wrote:

What shell do you use?

— Reply to this email directly or view it on GitHub.

[]’s Felipe Cavani fcavani@gmail.com www.fcavani.com.br

kans commented 8 years ago

What key sequence do you use for accents?

ggreer commented 8 years ago

Can you try launching Atom from the command line instead of the dock? (Be sure to exit Atom completely before trying this.) It's probably your LANG and other locale settings that aren't being set for atom.

fcavani commented 8 years ago

‘ + c = ç

‘ + a = á ‘ + e = é ‘ + i = í ‘ + o = ó ‘ + u = ú

The last 5 for ^ and for `.

~ + a = ã ~ + o = õ “ + u = ü

There is more it is what I use regulary. There is this problem, when you press for example “, it don’t shows. Normally you need to press “ + space tab to show “ without any letter.

On 30 de out de 2015, at 8:56 PM, Matt Kaniaris notifications@github.com wrote:

What key sequence do you use for accents?

— Reply to this email directly or view it on GitHub.

[]’s Felipe Cavani fcavani@gmail.com www.fcavani.com.br

skull-squadron commented 7 years ago

Using Spotlight for starting .apps is often faster than the command-line. (replaces what Quicksilver did)

⌘-space a return vs. ⌘-shift-enter(waste 1-3 seconds for zsh dotenv)at[tab]return

# set LANG on macOS
ChildProcess = require 'child_process'
localeGetCommand = "defaults read -g AppleLanguages | sed '/\"/!d;s/[\"[:space:]]//g;s/-/_/'"
ChildProcess.exec localeGetCommand, (error, stdout, stderr) ->
  for value in stdout.trim().split('\n')
    process.env['LANG'] = value + ".UTF-8"