Skip to main content

reckoner reckoner's Library tagged plugin   View Popular

New FARR Plugin: FCalc - DonationCoder.com

  • If the DcUpdater tool doesnt work for you for whatever reason, or you prefer not to use it, direct download of fcalc plugin:
    http://www.donationcoder....un/addons/FCalc/FCalc.zip

    You can get direct download locations from DcUpdater by turning on View -> Show Advanced Controls option from the DcUpdater menu.





17 Mar 09

LargeFile - Edit large files quickly (keywords: large huge speed) : vim online

  • Editing large files can be a time consuming process as Vim is working on a number of things behind the scenes, such as maintaining an undo database, searching for a syntax highlighting synchronization point, etc.  LargeFile.vim is a very small "plugin"; mostly, its just an autocmd that disables certain features of vim in the interests of speed.

Vicle - Vim - Interpreter Command Line Editor. Like Chimp or Slimv. : vim online

  • Vim - Interpreter Command Line Editor. Use vim like a front-end for edit commands and send it to an interactive interpreter open in a GNU Screen session.
13 Mar 09

Execute Python from within current file - Vim Tips Wiki - a Wikia wiki

  • "in vimrc:
    "python extensions
    py from vim import buffers, windows, command, current, error
    py import vim, sys
    py from vimpy import *

    command! PyExecBuffer py exec('\n'.join(current.buffer))

    map <F5> :PyExecBuffer<CR>
    imap <F5> <Esc><F5><CR>a
  • import sys, vim
    class Buffer:
    def __init__(self,buf):
    self.buf=buf
    def write(self,s):
    ll=s.split('\n')
    self.buf[-1]+=ll[0]
    for l in ll[1:]:
    self.buf.append(l)
    def clear(self):
    del self.buf[:]

    def redirect(buf=None):
    buf = buf or vim.current.window.buffer
    try:
    sys._stdout
    except:
    sys._stdout=sys.stdout
    sys.stdout = Buffer(buf)
  • 1 more annotations...
1 - 20 of 65 Next › Last »
Showing 20 items per page

Diigo is about better ways to research, share and collaborate on information. Learn more »

Join Diigo