Skip to content

Commit

Permalink
Merge pull request #3288 from VSCodeVim/disable_shada
Browse files Browse the repository at this point in the history
fix: disable nvim shada
  • Loading branch information
jpoon authored Dec 23, 2018
2 parents 954cdd9 + 217d10b commit 09886c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/neovim/neovim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class Neovim implements vscode.Disposable {
if (!(await util.promisify(exists)(dir))) {
dir = __dirname;
}
this.process = spawn(configuration.neovimPath, ['-u', 'NONE', '-N', '--embed'], {
this.process = spawn(configuration.neovimPath, ['-u', 'NONE', '-i', 'NONE', '-N', '--embed'], {
cwd: dir,
});
this.process.on('error', err => {
Expand Down

0 comments on commit 09886c5

Please sign in to comment.