Skip to content

Commit

Permalink
Merge pull request #712 from VSCodeVim/fix-diff-timeout
Browse files Browse the repository at this point in the history
Set diff timeout to 1 second.
  • Loading branch information
johnfn authored Sep 4, 2016
2 parents d5d8dc7 + a5b6d2f commit 207df46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/history/historyTracker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import { TextEditor } from './../textEditor';
import DiffMatchPatch = require("diff-match-patch");

const diffEngine = new DiffMatchPatch.diff_match_patch();
diffEngine.Diff_Timeout = 1000;
diffEngine.Diff_Timeout = 1; // 1 second

export class DocumentChange {
start : Position;
Expand Down

0 comments on commit 207df46

Please sign in to comment.