Home

Awesome

nuke.vim

An integration package for the Foundry's Nuke. This is my first vim plugin so go easy on me!

Included functionality

Motivation

Requirements

Installation

Now the fun part!

Startup vim, and fill the buffer with a few python snippits

    nuke.createNode("Blur")

    10+50

    import math
    for i in range(360):
        x = int(math.cos(math.radians(i))) * 500
        y = int(math.sin(math.radians(i))) * 500
        d = nuke.createNode("Dot")
        d.setXYpos(x, y)

Then, consider the chart below:

CommandMnemonicDescription
<leader>sn(s)end to (n)ukeSend the selection (or the current line if nothing is selected) to nuke
<leader>sb(s)end (b)ufferSend the entire buffer to nuke

You should be iterating in no time! For more information, consult doc/nukevim.txt or me, via e-mail.

Enjoy!

Thanks to:

Coming soon