コード例 #1
0
ファイル: ac_source_cmd.py プロジェクト: t9md/vim-py-anything
def command_t(dir=""):
    """TextMate like fuzzy file finder"""
    if not dir: dir = vim.current_buffer_dir()
    vim.command("set timeoutlen=1000")
    vim.command("CommandT %s" % dir)
コード例 #2
0
ファイル: ac_source_cmd.py プロジェクト: t9md/vim-py-anything
def nerd_tree():
    """NERDTree"""
    cmd = "NERDTree %s" % vim.current_buffer_dir()
    vim.command(cmd)