Exemplo n.º 1
0
def visual_view():
    text = get_visual_selection()
    if "\n" in text:
        print "bad selection"
    else:
        interactive.view(text)
Exemplo n.º 2
0
def visual_view():
    text = get_visual_selection()
    if "\n" in text:
        print "bad selection"
    else:
        interactive.view(text)
Exemplo n.º 3
0
def keyword_view():
    interactive.view(vim.eval('expand("<cword>")'))
Exemplo n.º 4
0
def keyword_view():
    interactive.view(vim.eval('expand("<cword>")'))