mirror of
https://github.com/qvacua/vimr.git
synced 2024-11-24 03:25:03 +03:00
Merge branch 'issue/337-initvim' into develop
This commit is contained in:
commit
78a6725bf7
@ -592,6 +592,9 @@ void server_start_neovim() {
|
||||
NSString *runtimePath = [resourcesPath stringByAppendingPathComponent:@"runtime"];
|
||||
setenv("VIMRUNTIME", runtimePath.fileSystemRepresentation, true);
|
||||
|
||||
// Set $LANG to en_US.UTF-8 such that the copied text to the system clipboard is not garbled.
|
||||
setenv("LANG", "en_US.UTF-8", true);
|
||||
|
||||
uv_mutex_init(&_mutex);
|
||||
uv_cond_init(&_condition);
|
||||
|
||||
|
@ -129,14 +129,6 @@ static CFDataRef local_server_callback(CFMessagePortRef local, SInt32 msgid, CFD
|
||||
_neoVimServerTask.standardError = nullFileHandle;
|
||||
#endif
|
||||
|
||||
// Set $LANG to en_US.UTF-8 such that the copied text to the system clipboard is not garbled.
|
||||
NSMutableDictionary<NSString *, NSString *> *environment = _neoVimServerTask.environment.mutableCopy;
|
||||
if (environment == nil) {
|
||||
environment = NSMutableDictionary.new;
|
||||
}
|
||||
environment[@"LANG"] = @"en_US.UTF-8";
|
||||
_neoVimServerTask.environment = environment;
|
||||
|
||||
_neoVimServerTask.standardInput = inputPipe;
|
||||
_neoVimServerTask.currentDirectoryPath = NSHomeDirectory();
|
||||
_neoVimServerTask.launchPath = shellPath;
|
||||
|
Loading…
Reference in New Issue
Block a user