diff options
-rw-r--r-- | ftplugin/diff_navigator.vim | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ftplugin/diff_navigator.vim b/ftplugin/diff_navigator.vim index efce948..7e28b36 100644 --- a/ftplugin/diff_navigator.vim +++ b/ftplugin/diff_navigator.vim @@ -27,10 +27,10 @@ " Only do this when not done yet for this buffer " Usually, not needed, just for the keeping normal API -if exists("b:did_ftplugin") - finish -endif -let b:did_ftplugin = 1 +" if exists("b:did_ftplugin") +" finish +" endif +" let b:did_ftplugin = 1 " Load this plugin only once if exists("g:loaded_diff_navigator") @@ -53,13 +53,13 @@ endfunction " From http://www.clearchain.com/blog/posts/splitting-a-patch " ----------------------------------------------------------- " -" here’s at least some info about the format of a patch file. +" here's at least some info about the format of a patch file. " " @@ -143,6 +143,13 @@ " " the first number is the starting line for this hunk in oldfile " the second number is the number of original source lines in this -" hunk (this includes lines marked with “-”) +" hunk (this includes lines marked with "-") " the third number is the starting line for this hunk in newfile " the last number is the number of lines after the hunk has been applied. function s:parseHunkHeader(lineno) |