reckoner reckoner's Library tagged → 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.
21 Mar 09
Determining indent settings (shiftwidth etc.) for python files - Vim Tips Wiki - a Wikia wiki
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...
08 Mar 09
EasyGrep - Fast and Easy Find and Replace Across Multiple Files : vim online
check out the video. Pretty powerful.
Selected Tags
Related Tags
Sponsored Links
Ads by Google
Top Contributors
Groups interested in plugin
Related Lists on Diigo
-
Tools for WP
Items: 20 | Visits: 80
Created by: Hexy Hwang
-
WordPress 2.5
Items: 120 | Visits: 155
Created by: Toshiro Shimura
-
Rails ActiveMessaging Intro
message plugin for rails
Items: 11 | Visits: 228
Created by: Vincent Tsao
Diigo is about better ways to research, share and collaborate on information. Learn more »
Join Diigo
