Skip to main content

Home/ VIM Editor/ Contents contributed and discussions participated by reckoner reckoner

Contents contributed and discussions participated by reckoner reckoner

reckoner reckoner

flydiff - on-the-fly diff : vim online - 0 views

  • Flydiff is a Vim plugin to perform on-the-fly diff on the current buffer with some version control system and show the differences in another buffer.
reckoner reckoner

DirDiff.vim - A plugin to diff and merge two directories recursively. : vim online - 0 views

  • This is a utility that performs a recursive diff on two directories and generate a diff "window".  Based on that window you can perform various diff operations such as opening two files in Vim's diff mode, copy the file or directory recursively to the other, or remove the directory tree from the source directory.
reckoner reckoner

Search for visually selected text - Vim Tips Wiki - a Wikia wiki - 0 views

  • With the following, you can use g/ (or g?) to search forwards (or backwards) for the currently selected text.
reckoner reckoner

SCMDiff - Highlight changed lines in a file via SCM diff command : vim online - 0 views

  • It allows you to quickly toggle (through a keybinding, Ctrl-D by default) the highlighting of changed lines in a file through an SCM's diff command.
  •  
    needed some hand tweaking on my part to get it to work
reckoner reckoner

automatic type along completion as in Notepad++? - vim_use | Google Groups - 0 views

  • augroup foo   au!   au CursorMovedI,InsertEnter * if search('\k\{2,}\%#\k\@!','ncb') |               \ call feedkeys("\<c-n>\<c-p>","t") | endif augroup END inoremap <expr><cr> pumvisible()?"\<c-n>\<c-y> ":"\<cr>" Pressing return-key will accept the first match. Be ready to exit the editor.
reckoner reckoner

VimMate - 0 views

  • VimMate is a graphical add-on to Vim with IDE-like features: it does more than the plain Vim while still being lightweight. Even with the additional features, it stays out of the way for it's main task: editing files with Vim. VimMate adds functionality to Vim by embedding Vim GTK GUI (gVim) within VimMate.
reckoner reckoner

YankRing.vim - Maintains a history of previous yanks and deletes : vim online - 0 views

  • Vim already maintains a list of numbered registers containing the last 9 deletes.  These previous deletes can be referenced using [register]p, so "1p will paste the last delete, "2p the 2nd last delete.  For more information see |quote_number|. Vim does not provide any mechanism to reference previous yanked text.  In Emacs this feature is called the "kill ring".
« First ‹ Previous 81 - 100 of 136 Next › Last »
Showing 20 items per page