Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hack to enable neovim support #136

Open
wants to merge 4 commits into
base: master
Choose a base branch
from

Commits on May 15, 2017

  1. Hack to enable neovim support

    This is a very first attempt at enabling neovim support for
    vim-taskwarrir. In my use the only functions that require interaction
    are undo and delete, for these two functions there is a check
    `has('nvim')` which changes execution from `!` to `terminal`. There is
    also no `taskwarrior#refresh()` call, which is done in a BufEnter
    autocmd.
    malramsay64 committed May 15, 2017
    Configuration menu
    Copy the full SHA
    e34767b View commit details
    Browse the repository at this point in the history

Commits on May 21, 2017

  1. Neovim support for sync

    The refresh of the terminal occurred before sync had updated so any new
    tasks were not showing up when syncing in neovim.
    malramsay64 committed May 21, 2017
    Configuration menu
    Copy the full SHA
    310c5aa View commit details
    Browse the repository at this point in the history

Commits on May 25, 2017

  1. Change to positive has('nvim') conditionals

    All the conditionals in the check for nvim have been modified to check
    for the positive rather than negative.
    malramsay64 committed May 25, 2017
    Configuration menu
    Copy the full SHA
    c98816c View commit details
    Browse the repository at this point in the history

Commits on Jun 7, 2017

  1. Additional windows/tabs no longer close

    I am creating a new window every time there is a call to terminal, as
    without it when there are multiple windows or tabs open the terminal
    call will close the current window.
    malramsay64 committed Jun 7, 2017
    Configuration menu
    Copy the full SHA
    ac73c27 View commit details
    Browse the repository at this point in the history